chart-svg 0.2.2 → 0.2.3
raw patch · 39 files changed
+606/−625 lines, 39 filesdep +mtldep −bytestringdep −concurrencydep −doctestdep ~Colordep ~JuicyPixelsdep ~attoparsecsetup-changedPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependencies added: mtl
Dependencies removed: bytestring, concurrency, doctest, vector
Dependency ranges changed: Color, JuicyPixels, attoparsec, containers, cubicbezier, foldl, lens, linear, lucid, numhask, numhask-space, reanimate, reanimate-svg, scientific, tagsoup, text, time, transformers, unordered-containers
API changes (from Hackage documentation)
+ Chart.Bar: barRects :: BarOptions -> [[Double]] -> [[Rect Double]]
+ Data.FormatN: percent :: Maybe Int -> Double -> Text
+ Data.FormatN: roundSig :: Int -> Double -> Scientific
- Chart: padRect :: Num a => a -> Rect a -> Rect a
+ Chart: padRect :: Subtractive a => a -> Rect a -> Rect a
- Chart.Types: padRect :: Num a => a -> Rect a -> Rect a
+ Chart.Types: padRect :: Subtractive a => a -> Rect a -> Rect a
- Data.Path: cubicPolar :: (ExpField a, TrigField a) => CubicPosition a -> CubicPolar a
+ Data.Path: cubicPolar :: (Eq a, ExpField a, TrigField a) => CubicPosition a -> CubicPolar a
- Data.Path: cubicPosition :: (ExpField a, TrigField a) => CubicPolar a -> CubicPosition a
+ Data.Path: cubicPosition :: (Eq a, ExpField a, TrigField a) => CubicPolar a -> CubicPosition a
- Data.Path: quadPolar :: (ExpField a, TrigField a) => QuadPosition a -> QuadPolar a
+ Data.Path: quadPolar :: (Eq a, ExpField a, TrigField a) => QuadPosition a -> QuadPolar a
Files
- Setup.hs +1/−0
- app/reanimate-example.hs +1/−3
- chart-svg.cabal +74/−116
- other/arc.svg +26/−26
- other/arcflags.svg +13/−13
- other/arrow.svg +3/−3
- other/bar.svg +12/−12
- other/compound.svg +4/−4
- other/cubic.svg +2/−2
- other/ellipse.svg +85/−85
- other/glines.svg +4/−4
- other/glyphs.svg +3/−3
- other/hudoptions.svg +25/−25
- other/label.svg +1/−1
- other/legend.svg +26/−26
- other/lglyph.svg +1/−1
- other/line.svg +26/−26
- other/path.svg +20/−20
- other/quad.svg +26/−26
- other/rect.svg +13/−13
- other/surface.svg +2/−2
- other/svgoptions.svg +3/−3
- other/text.svg +1/−1
- other/textlocal.svg +1/−1
- other/unit.svg +1/−1
- other/venn.svg +17/−17
- other/wave.svg +1/−1
- src/Chart.hs +2/−9
- src/Chart/Bar.hs +16/−9
- src/Chart/Examples.hs +12/−7
- src/Chart/Reanimate.hs +40/−39
- src/Chart/Render.hs +59/−51
- src/Chart/Surface.hs +5/−1
- src/Chart/Types.hs +26/−16
- src/Chart/Various.hs +5/−2
- src/Data/Colour.hs +11/−8
- src/Data/FormatN.hs +14/−10
- src/Data/Path.hs +24/−17
- test/test.hs +0/−21
Setup.hs view
@@ -1,2 +1,3 @@ import Distribution.Simple+ main = defaultMain
app/reanimate-example.hs view
@@ -2,10 +2,8 @@ -- stack runghc --package reanimate {-# LANGUAGE MonoLocalBinds #-}-{-# LANGUAGE NegativeLiterals #-} {-# LANGUAGE OverloadedLabels #-} {-# LANGUAGE OverloadedStrings #-}-{-# LANGUAGE NoImplicitPrelude #-} -- | reanimate example --@@ -20,7 +18,7 @@ import Chart.Examples import Chart.Reanimate import Control.Lens hiding (transform)-import NumHask.Prelude hiding (fold)+import Data.Foldable import Reanimate as Re main :: IO ()
chart-svg.cabal view
@@ -1,38 +1,38 @@-cabal-version: 2.4-name: chart-svg-version: 0.2.2-synopsis: Charting library targetting SVGs.+cabal-version: 2.4+name: chart-svg+version: 0.2.3+synopsis: Charting library targetting SVGs. description:- This package provides a charting library targetting SVG as the rendered output.- .- == Usage- .- >>> import Chart- >>> :set -XOverloadedLabels- >>>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]]- >>> let anns = zipWith (\w c -> LineA (LineStyle w c Nothing Nothing Nothing Nothing)) [0.015, 0.03, 0.01] palette1_- >>> let lineExample = mempty & (#chartList .~ zipWith Chart anns (fmap (fmap PointXY) xs)) & #hudOptions .~ defaultHudOptions & #svgOptions .~ defaultSvgOptions :: ChartSvg- .- > writeChartSvg "other/line.svg" lineExample- .- - .- See "Chart" for a broad overview of concepts, and "Chart.Examples" for a variety of practical examples.+ This package provides a charting library targetting SVG as the rendered output.+ .+ == Usage+ .+ >>> import Chart+ >>> :set -XOverloadedLabels+ >>>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]]+ >>> let anns = zipWith (\w c -> LineA (LineStyle w c Nothing Nothing Nothing Nothing)) [0.015, 0.03, 0.01] palette1_+ >>> let lineExample = mempty & (#chartList .~ zipWith Chart anns (fmap (fmap PointXY) xs)) & #hudOptions .~ defaultHudOptions & #svgOptions .~ defaultSvgOptions :: ChartSvg+ .+ > writeChartSvg "other/line.svg" lineExample+ .+ + .+ See "Chart" for a broad overview of concepts, and "Chart.Examples" for a variety of practical examples. -category: charts-homepage: https://github.com/tonyday567/chart-svg#readme-bug-reports: https://github.com/tonyday567/chart-svg/issues-author: Tony Day-maintainer: tonyday567@gmail.com-copyright: Tony Day (c) 2017-license: BSD-3-Clause-license-file: LICENSE-build-type: Simple-extra-doc-files:- other/*.svg+category: charts+homepage: https://github.com/tonyday567/chart-svg#readme+bug-reports: https://github.com/tonyday567/chart-svg/issues+author: Tony Day+maintainer: tonyday567@gmail.com+copyright: Tony Day (c) 2017+license: BSD-3-Clause+license-file: LICENSE+build-type: Simple+extra-doc-files: other/*.svg+tested-with: GHC ==8.8.4 || ==8.10.4 || ==9.0.1 || ==9.2.0.20210821 source-repository head- type: git+ type: git location: https://github.com/tonyday567/chart-svg library@@ -41,101 +41,59 @@ Chart.Bar Chart.Examples Chart.Reanimate- Chart.Surface Chart.Render+ Chart.Surface Chart.Types Chart.Various Data.Colour Data.FormatN Data.Path- hs-source-dirs:- src++ hs-source-dirs: src build-depends:- Color >= 0.3 && < 0.4,- JuicyPixels >= 3.3 && < 3.4,- attoparsec >= 0.13 && < 0.14,- base >=4.7 && <5,- containers >= 0.6 && < 0.7,- cubicbezier >= 0.6 && < 0.7,- foldl >= 1.4 && < 1.5,- generic-lens >= 1.2 && < 3.0,- lens >= 4.0 && < 5,- linear >= 1.21 && < 1.22,- lucid >= 2.9 && < 2.10,- numhask >= 0.7 && < 0.8,- numhask-space >= 0.7 && < 0.8,- reanimate >= 1.1.1.0 && < 1.2,- reanimate-svg >= 0.13 && < 0.14,- scientific >= 0.3 && < 0.4,- tagsoup >= 0.14 && < 0.15,- text >= 1.2 && < 1.3,- time >= 1.9 && < 1.10,- transformers >= 0.5 && < 0.6,- unordered-containers >= 0.2 && < 0.3,- default-language: Haskell2010- default-extensions:- StrictData+ , attoparsec ^>=0.14+ , base >=4.7 && <5+ , Color ^>=0.3+ , containers ^>=0.6+ , cubicbezier ^>=0.6+ , foldl ^>=1.4+ , generic-lens >=1.2 && <3.0+ , JuicyPixels ^>=3.3+ , lens ^>=5.0+ , linear ^>=1.21+ , lucid ^>=2.9+ , mtl ^>=2.2.2+ , numhask ^>=0.8+ , numhask-space ^>=0.8+ , reanimate ^>=1.1.1.0+ , reanimate-svg ^>=0.13+ , scientific ^>=0.3+ , tagsoup ^>=0.14+ , text ^>=1.2+ , time ^>=1.9+ , transformers ^>=0.5+ , unordered-containers ^>=0.2++ default-language: Haskell2010+ default-extensions: StrictData ghc-options:- -Wall- -Wcompat- -Wincomplete-record-updates- -Wincomplete-uni-patterns- -Wredundant-constraints- -fwrite-ide-info- -hiedir=.hie+ -Wall -Wcompat -Wincomplete-record-updates+ -Wincomplete-uni-patterns -Wredundant-constraints -fwrite-ide-info+ -hiedir=.hie -Wunused-packages executable reanimate-example- main-is: reanimate-example.hs- hs-source-dirs:- app+ main-is: reanimate-example.hs+ hs-source-dirs: app build-depends:- attoparsec >= 0.13 && < 0.14,- JuicyPixels >= 3.3.5 && < 3.4,- base >=4.7 && <5,- bytestring >= 0.10 && < 0.11,- chart-svg,- concurrency >= 1.11 && < 1.12,- foldl >= 1.4 && < 1.5,- lucid >= 2.9 && < 2.10,- lens >= 4.19 && < 4.20,- linear >= 1.21 && < 1.22,- numhask >= 0.7 && < 0.8,- numhask-space >= 0.7 && < 0.8,- reanimate >= 1.1.1.0 && < 1.2,- reanimate-svg >= 0.13 && < 0.14,- text >= 1.2 && < 1.3,- time >= 1.9 && < 1.10,- transformers >= 0.5 && < 0.6,- unordered-containers >= 0.2 && < 0.3,- vector >= 0.12 && < 0.13,- default-language: Haskell2010- default-extensions:- ghc-options:- -Wall- -Wcompat- -Wincomplete-record-updates- -Wincomplete-uni-patterns- -Wredundant-constraints- -funbox-strict-fields- -fwrite-ide-info- -hiedir=.hie+ , base >=4.7 && <5+ , chart-svg+ , lens ^>=5.0+ , reanimate ^>=1.1.1.0 -test-suite test- type: exitcode-stdio-1.0- main-is: test.hs- hs-source-dirs:- test- build-depends:- base >=4.7 && <5,- chart-svg,- doctest >= 0.16 && < 0.18,- numhask >= 0.7 && < 0.8,- default-language: Haskell2010+ default-language: Haskell2010+ default-extensions: ghc-options:- -Wall- -Wcompat- -Wincomplete-record-updates- -Wincomplete-uni-patterns- -Wredundant-constraints- -fwrite-ide-info- -hiedir=.hie+ -Wall -Wcompat -Wincomplete-record-updates+ -Wincomplete-uni-patterns -Wredundant-constraints+ -funbox-strict-fields -fwrite-ide-info -hiedir=.hie+ -Wunused-packages
other/arc.svg view
@@ -1,16 +1,16 @@-<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+<svg height="300.0" width="302.19127533282744" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.6 -0.5330998616968212 1.1154380916726987 1.107349731170277"><g fill-opacity="5.0e-2" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.9069060898743935" y="-0.5" width="0.9455996520193282" x="-0.4455996520193281"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4455996520193281,0.40690608987439353+0.5,0.40690608987439353"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4455996520193281,0.3244600817039941+0.5,0.3244600817039941"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4455996520193281,0.24201407353359472+0.5,0.24201407353359472"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4455996520193281,0.1595680653631953+0.5,0.1595680653631953"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4455996520193281,7.712205719279586e-2+0.5,7.712205719279586e-2"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4455996520193281,-5.323950977603409e-3+0.5,-5.323950977603409e-3"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4455996520193281,-8.77699591480029e-2+0.5,-8.77699591480029e-2"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4455996520193281,-0.17021596731840227+0.5,-0.17021596731840227"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4455996520193281,-0.25266197548880165+0.5,-0.25266197548880165"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4455996520193281,-0.335107983659201+0.5,-0.335107983659201"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4455996520193281,-0.4175539918296004+0.5,-0.4175539918296004"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4455996520193281,-0.5+0.5,-0.5"/></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.4200562281775722" x="-0.5">-0.1</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.3376102200071728" x="-0.5">0</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.2551642118367734" x="-0.5">0.1</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.17271820366637397" x="-0.5">0.2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="9.027219549597465e-2" x="-0.5">0.3</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="7.826187325575218e-3" x="-0.5">0.4</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-7.461982084482444e-2" x="-0.5">0.5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.1570658290152236" x="-0.5">0.6</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.23951183718562297" x="-0.5">0.7</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.32195784535602223" x="-0.5">0.8</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.4044038535264217" x="-0.5">0.9</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.4868498616968212" x="-0.5">1</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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@@ -22,17 +22,17 @@ -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.4706580427978403,-0.515"/></g></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.9069060898743935" y="-0.5" width="3.782398608077331e-3" x="-0.4588380471475987"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4455996520193281,0.40690608987439353+-0.4455996520193281,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.34053302401718055,0.40690608987439353+-0.34053302401718055,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.23546639601503294,0.40690608987439353+-0.23546639601503294,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.13039976801288533,0.40690608987439353+-0.13039976801288533,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-2.533314001073772e-2,0.40690608987439353+-2.533314001073772e-2,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="7.973348799140978e-2,0.40690608987439353+7.973348799140978e-2,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.1848001159935574,0.40690608987439353+0.1848001159935574,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.289866743995705,0.40690608987439353+0.289866743995705,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.3949333719978525,0.40690608987439353+0.3949333719978525,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.5,0.40690608987439353+0.5,-0.5"/></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.158620689655172e-2"><text y="0.5" x="-0.4455996520193281" transform="rotate(-45.0, -0.4455996520193281, 0.5)">-0.8</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.158620689655172e-2"><text y="0.5" x="-0.34053302401718055" transform="rotate(-45.0, -0.34053302401718055, 0.5)">-0.6</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.158620689655172e-2"><text y="0.5" x="-0.23546639601503294" transform="rotate(-45.0, -0.23546639601503294, 0.5)">-0.4</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.158620689655172e-2"><text y="0.5" x="-0.13039976801288533" transform="rotate(-45.0, -0.13039976801288533, 0.5)">-0.2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.158620689655172e-2"><text y="0.5" x="-2.533314001073772e-2" transform="rotate(-45.0, -2.533314001073772e-2, 0.5)">0</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.158620689655172e-2"><text y="0.5" x="7.973348799140978e-2" transform="rotate(-45.0, 7.973348799140978e-2, 0.5)">0.2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.158620689655172e-2"><text y="0.5" x="0.1848001159935574" transform="rotate(-45.0, 0.1848001159935574, 0.5)">0.4</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.158620689655172e-2"><text y="0.5" x="0.289866743995705" transform="rotate(-45.0, 0.289866743995705, 0.5)">0.6</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.158620689655172e-2"><text y="0.5" x="0.3949333719978525" transform="rotate(-45.0, 0.3949333719978525, 0.5)">0.8</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.158620689655172e-2"><text y="0.5" x="0.5" transform="rotate(-45.0, 0.5, 0.5)">1</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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@@ -42,7 +42,7 @@ 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.5,0.41593910125606487"/></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="3.6276243594975943e-3" y="0.41597515077313746" width="0.9455996520193282" x="-0.4455996520193281"/></g><g fill-opacity="0.1" stroke-opacity="0.0" fill="#1f78b5" stroke-width="1.0e-2" stroke="#000000"><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" fill="none" stroke-width="2.0e-3" stroke="#a6cfe3"><polyline points="0.5,0.3244600817039942 0.483369277234746,0.3307309001377951 0.4664957468010773,0.3365887087530307 0.44939606083614747,0.34202772659989517@@ -142,4 +142,4 @@ -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>+-2.533314001073772e-2,-0.5"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="3.0e-3" stroke="#1f78b5"><rect height="3.0e-2" y="-0.10276996127589864" width="3.0000000000000027e-2" x="0.22233343541807982"/></g><g fill-opacity="0.1" stroke-opacity="1.0" fill="#6666cc" stroke-width="2.0e-3" stroke="#808080"><rect height="0.8731172355803916" y="-0.5" width="0.8500068705306324" x="-0.3500068705306324"/></g><g></g></svg>
other/arcflags.svg view
@@ -1,4 +1,4 @@-<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+<svg height="300.0" width="312.5971457599038" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="0.0 -4.94987663248166 9.0 8.637314948722489"><g></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="0.6"><text y="-0.0" x="0.5549999999999999" transform="rotate(-90.0, 0.5549999999999999, -0.0)">Sweep</text></g><g></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="0.4"><text y="1.5099999999999998" x="1.7149999999999999" transform="rotate(-90.0, 1.7149999999999999, 1.5099999999999998)">True</text></g><g></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="0.4"><text y="-1.5100000000000002" x="1.7149999999999999" transform="rotate(-90.0, 1.7149999999999999, -1.5100000000000002)">False</text></g><g stroke-opacity="0.2" fill="none" stroke-width="2.0e-2" stroke="#0d0d0d"><polyline points="5.409999999999999,1.6699999999999995 5.408026728428272,1.607209480470686 5.402114701314478,1.5446667664356952 5.392287250728689,1.4826186854142747@@ -98,7 +98,7 @@ 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+5.409999999999999,1.6699999999999995"/></g><g stroke-opacity="0.2" fill="none" stroke-width="2.0e-2" stroke="#0d0d0d"><polyline points="4.409999999999999,2.6699999999999995 4.408026728428271,2.607209480470686 4.402114701314478,2.5446667664356952 4.392287250728688,2.4826186854142747@@ -198,7 +198,7 @@ 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+4.409999999999999,2.67"/></g><g stroke-opacity="0.5" fill="none" stroke-width="5.0e-2" stroke="#0d0d0d"><polyline points="3.41,1.6699999999999995 3.4257073173118204,1.6701233675183391 3.441410759078128,1.6704934396342677 3.4571064507096416,1.6711101250380294@@ -298,7 +298,7 @@ 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+4.409999999999999,2.6699999999999995"/></g><g fill-opacity="0.3" stroke-opacity="0.5" fill="#0d0d0d" stroke-width="1.0e-2" stroke="#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" fill="none" stroke-width="2.0e-2" stroke="#0d0d0d"><polyline points="5.409999999999999,-1.3699999999999997 5.408026728428272,-1.4327905195293131 5.402114701314478,-1.4953332335643048 5.392287250728689,-1.5573813145857245@@ -398,7 +398,7 @@ 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+5.409999999999999,-1.3699999999999997"/></g><g stroke-opacity="0.2" fill="none" stroke-width="2.0e-2" stroke="#0d0d0d"><polyline points="4.409999999999999,-0.37000000000000055 4.408026728428271,-0.432790519529314 4.402114701314478,-0.4953332335643039 4.392287250728688,-0.5573813145857254@@ -498,7 +498,7 @@ 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+4.409999999999999,-0.36999999999999966"/></g><g stroke-opacity="0.5" fill="none" stroke-width="5.0e-2" stroke="#0d0d0d"><polyline points="3.41,-1.3699999999999997 3.410123367518339,-1.3542926826881794 3.4104934396342683,-1.338589240921872 3.411110125038029,-1.3228935492903573@@ -598,7 +598,7 @@ 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+4.409999999999999,-0.37000000000000055"/></g><g fill-opacity="0.3" stroke-opacity="0.5" fill="#0d0d0d" stroke-width="1.0e-2" stroke="#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 text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="0.4"><text y="-3.309999999999999" x="3.899999999999999">False</text></g><g stroke-opacity="0.2" fill="none" stroke-width="2.0e-2" stroke="#0d0d0d"><polyline points="8.905,1.67743831624083 8.903026728428271,1.6146477967115165 8.897114701314477,1.5521050826765257 8.887287250728688,1.4900570016551051@@ -698,7 +698,7 @@ 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+8.905,1.6774383162408302"/></g><g stroke-opacity="0.2" fill="none" stroke-width="2.0e-2" stroke="#0d0d0d"><polyline points="7.904999999999998,2.67743831624083 7.90302672842827,2.6146477967115165 7.897114701314477,2.5521050826765257 7.887287250728688,2.490057001655105@@ -798,7 +798,7 @@ 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+7.904999999999998,2.6774383162408304"/></g><g stroke-opacity="0.5" fill="none" stroke-width="5.0e-2" stroke="#0d0d0d"><polyline points="6.904999999999999,1.67743831624083 6.90611012503803,1.6303318655311871 6.909438035396918,1.5833300029223158 6.914976342283441,1.5365370843032475@@ -898,7 +898,7 @@ 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+7.904999999999998,2.67743831624083"/></g><g fill-opacity="0.3" stroke-opacity="0.5" fill="#0d0d0d" stroke-width="1.0e-2" stroke="#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" fill="none" stroke-width="2.0e-2" stroke="#0d0d0d"><polyline points="8.91987663248166,-1.3774383162408301 8.917903360909932,-1.4402288357701436 8.911991333796138,-1.5027715498051353 8.90216388321035,-1.564819630826555@@ -998,7 +998,7 @@ 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+8.91987663248166,-1.3774383162408301"/></g><g stroke-opacity="0.2" fill="none" stroke-width="2.0e-2" stroke="#0d0d0d"><polyline points="7.91987663248166,-0.37743831624083013 7.917903360909932,-0.4402288357701436 7.911991333796136,-0.5027715498051353 7.902163883210347,-0.564819630826555@@ -1098,7 +1098,7 @@ 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+7.91987663248166,-0.37743831624083013"/></g><g stroke-opacity="0.5" fill="none" stroke-width="5.0e-2" stroke="#0d0d0d"><polyline points="6.9198766324816585,-1.3774383162408301 6.872770181772015,-1.3763281912028007 6.825768319163144,-1.3730002808439106 6.778975400544077,-1.3674619739573877@@ -1198,4 +1198,4 @@ 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>+7.91987663248166,-0.37743831624083013"/></g><g fill-opacity="0.3" stroke-opacity="0.5" fill="#0d0d0d" stroke-width="1.0e-2" stroke="#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 text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="0.4"><text y="-3.3174383162408296" x="7.394999999999998">True</text></g><g></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="0.6"><text y="-4.39487663248166" x="5.499999999999998">Large</text></g></svg>
other/arrow.svg view
@@ -1,4 +1,4 @@-<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+<svg height="300.0" width="457.74043453182077" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.87 -0.5531722096956032 1.6775 1.0994222096956032"><g fill-opacity="5.0e-2" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.9019165727170236" y="-0.5" width="1.4445949676731749" x="-0.6945949676731749"/></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.41499436302142045" x="-0.75">-0.5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.3248027057497182" x="-0.75">-0.4</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.23461104847801584" x="-0.75">-0.3</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.14441939120631336" x="-0.75">-0.2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="5.4227733934611055e-2" x="-0.75">-0.1</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-3.596392333709142e-2" x="-0.75">0</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.12615558060879384" x="-0.75">0.1</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.21634723788049615" x="-0.75">0.2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.30653889515219834" x="-0.75">0.3</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.3967305524239009" x="-0.75">0.4</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.4869222096956032" x="-0.75">0.5</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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@@ -9,7 +9,7 @@ -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.7201161454354009,-0.515"/></g></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.9019165727170236" y="-0.5" width="3.8522532471284565e-3" x="-0.7080778540381245"/></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.6945949676731749">-0.5</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.5501354709058575">-0.4</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.40567597413853984">-0.3</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.2612164773712222">-0.2</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.11675698060390471">-0.1</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="2.770251616341257e-2">0</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.1721620129307302">0.1</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.3166215096980478">0.2</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.4610810064653652">0.3</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.6055405032326826">0.4</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.75">0.5</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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@@ -20,4 +20,4 @@ 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>+0.75,0.41081736189402474"/></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="3.6076662908680612e-3" y="0.41093573844419395" width="1.4445949676731749" x="-0.6945949676731749"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-41.70388402745369, -0.6223652192895162, 0.3568207440811725)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.6223652192895162, 0.3568207440811725) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-40.703991576050946, -0.6223652192895162, 0.2666290868094702)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.6223652192895162, 0.2666290868094702) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-39.33034350353968, -0.6223652192895162, 0.17643742953776775)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.6223652192895162, 0.17643742953776775) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-37.32821468040517, -0.6223652192895162, 8.624577226606533e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.6223652192895162, 8.624577226606533e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-34.14934249468909, -0.6223652192895162, -3.945885005637084e-3)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.6223652192895162, -3.945885005637084e-3) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-28.382403784146327, -0.6223652192895162, -9.413754227733939e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.6223652192895162, -9.413754227733939e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-15.274030281041822, -0.6223652192895162, -0.1843291995490418)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.6223652192895162, -0.1843291995490418) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(24.91711526233156, -0.6223652192895162, -0.2745208568207441)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.6223652192895162, -0.2745208568207441) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(85.25243231067932, -0.6223652192895162, -0.36471251409244654)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.6223652192895162, -0.36471251409244654) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(107.439663564573, -0.6223652192895162, -0.4549041713641486)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.6223652192895162, -0.4549041713641486) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-46.89925433618114, -0.47790572252219865, 0.3568207440811725)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.47790572252219865, 0.3568207440811725) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-45.41219274140233, -0.47790572252219865, 0.2666290868094702)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.47790572252219865, 0.2666290868094702) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-43.26655332833368, -0.47790572252219865, 0.17643742953776775)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.47790572252219865, 0.17643742953776775) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-39.913529548149384, -0.47790572252219865, 8.624577226606533e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.47790572252219865, 8.624577226606533e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-33.99914492987854, -0.47790572252219865, -3.945885005637084e-3)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.47790572252219865, -3.945885005637084e-3) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-21.321176713227626, -0.47790572252219865, -9.413754227733939e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.47790572252219865, -9.413754227733939e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(13.364611169993305, -0.47790572252219865, -0.1843291995490418)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.47790572252219865, -0.1843291995490418) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(70.26081916410517, -0.47790572252219865, -0.2745208568207441)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.47790572252219865, -0.2745208568207441) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(96.08437785000453, -0.47790572252219865, -0.36471251409244654)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.47790572252219865, -0.36471251409244654) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(106.05509143504601, -0.47790572252219865, -0.4549041713641486)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.47790572252219865, -0.4549041713641486) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-53.3543508353797, -0.33344622575488114, 0.3568207440811725)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.33344622575488114, 0.3568207440811725) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-51.23448009554123, -0.33344622575488114, 0.2666290868094702)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.33344622575488114, 0.2666290868094702) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-48.01278750418334, -0.33344622575488114, 0.17643742953776775)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.33344622575488114, 0.17643742953776775) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-42.58049078334366, -0.33344622575488114, 8.624577226606533e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.33344622575488114, 8.624577226606533e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-31.827446576673108, -0.33344622575488114, -3.945885005637084e-3)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.33344622575488114, -3.945885005637084e-3) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-5.440332031005506, -0.33344622575488114, -9.413754227733939e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.33344622575488114, -9.413754227733939e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(47.1210963966615, -0.33344622575488114, -0.1843291995490418)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.33344622575488114, -0.1843291995490418) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(80.53767779197439, -0.33344622575488114, -0.2745208568207441)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.33344622575488114, -0.2745208568207441) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(93.73139699916045, -0.33344622575488114, -0.36471251409244654)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.33344622575488114, -0.36471251409244654) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(100.06068979532297, -0.33344622575488114, -0.4549041713641486)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.33344622575488114, -0.4549041713641486) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-61.480951599569366, -0.18898672898756352, 0.3568207440811725)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.18898672898756352, 0.3568207440811725) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-58.67008724249424, -0.18898672898756352, 0.2666290868094702)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.18898672898756352, 0.2666290868094702) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-54.17002461487118, -0.18898672898756352, 0.17643742953776775)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.18898672898756352, 0.17643742953776775) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-45.97102193107917, -0.18898672898756352, 8.624577226606533e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.18898672898756352, 8.624577226606533e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-27.930948956080037, -0.18898672898756352, -3.945885005637084e-3)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.18898672898756352, -3.945885005637084e-3) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(14.445942279113961, -0.18898672898756352, -9.413754227733939e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.18898672898756352, -9.413754227733939e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(58.95370855020484, -0.18898672898756352, -0.1843291995490418)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.18898672898756352, -0.1843291995490418) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(78.38768602098031, -0.18898672898756352, -0.2745208568207441)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.18898672898756352, -0.2745208568207441) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(87.0721562906961, -0.18898672898756352, -0.36471251409244654)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.18898672898756352, -0.36471251409244654) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(91.775265785145, -0.18898672898756352, -0.4549041713641486)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-0.18898672898756352, -0.4549041713641486) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-71.63155263230772, -4.452723222024613e-2, 0.3568207440811725)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-4.452723222024613e-2, 0.3568207440811725) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-68.30375886013567, -4.452723222024613e-2, 0.2666290868094702)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-4.452723222024613e-2, 0.2666290868094702) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-62.713434447769245, -4.452723222024613e-2, 0.17643742953776775)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-4.452723222024613e-2, 0.17643742953776775) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-51.74335201662478, -4.452723222024613e-2, 8.624577226606533e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-4.452723222024613e-2, 8.624577226606533e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-25.46334506187161, -4.452723222024613e-2, -3.945885005637084e-3)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-4.452723222024613e-2, -3.945885005637084e-3) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(25.352317626939044, -4.452723222024613e-2, -9.413754227733939e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-4.452723222024613e-2, -9.413754227733939e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(58.53902007564373, -4.452723222024613e-2, -0.1843291995490418)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-4.452723222024613e-2, -0.1843291995490418) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(72.03510627877053, -4.452723222024613e-2, -0.2745208568207441)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-4.452723222024613e-2, -0.2745208568207441) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(78.57121322367863, -4.452723222024613e-2, -0.36471251409244654)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-4.452723222024613e-2, -0.36471251409244654) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(82.33198654554482, -4.452723222024613e-2, -0.4549041713641486)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(-4.452723222024613e-2, -0.4549041713641486) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-83.72582919707884, 9.993226454707138e-2, 0.3568207440811725)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(9.993226454707138e-2, 0.3568207440811725) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-80.37960270065743, 9.993226454707138e-2, 0.2666290868094702)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(9.993226454707138e-2, 0.2666290868094702) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-74.55784459620769, 9.993226454707138e-2, 0.17643742953776775)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(9.993226454707138e-2, 0.17643742953776775) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-62.392645475723924, 9.993226454707138e-2, 8.624577226606533e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(9.993226454707138e-2, 8.624577226606533e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-30.325850500388558, 9.993226454707138e-2, -3.945885005637084e-3)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(9.993226454707138e-2, -3.945885005637084e-3) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(25.463345061871618, 9.993226454707138e-2, -9.413754227733939e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(9.993226454707138e-2, -9.413754227733939e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(53.34825221466397, 9.993226454707138e-2, -0.1843291995490418)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(9.993226454707138e-2, -0.1843291995490418) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(64.18052078566551, 9.993226454707138e-2, -0.2745208568207441)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(9.993226454707138e-2, -0.2745208568207441) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(69.52530867630297, 9.993226454707138e-2, -0.36471251409244654)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(9.993226454707138e-2, -0.36471251409244654) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(72.65691141186669, 9.993226454707138e-2, -0.4549041713641486)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(9.993226454707138e-2, -0.4549041713641486) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-96.84875031477206, 0.244391761314389, 0.3568207440811725)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.244391761314389, 0.3568207440811725) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-94.10747809603637, 0.244391761314389, 0.2666290868094702)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.244391761314389, 0.2666290868094702) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-89.31668823842175, 0.244391761314389, 0.17643742953776775)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.244391761314389, 0.17643742953776775) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-79.0898362236076, 0.244391761314389, 8.624577226606533e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.244391761314389, 8.624577226606533e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-48.89810671661513, 0.244391761314389, -3.945885005637084e-3)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.244391761314389, -3.945885005637084e-3) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(16.431113233075703, 0.244391761314389, -9.413754227733939e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.244391761314389, -9.413754227733939e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(45.97102193107918, 0.244391761314389, -0.1843291995490418)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.244391761314389, -0.1843291995490418) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(56.03475263569897, 0.244391761314389, -0.2745208568207441)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.244391761314389, -0.2745208568207441) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(60.77115498628979, 0.244391761314389, -0.36471251409244654)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.244391761314389, -0.36471251409244654) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(63.488583985830445, 0.244391761314389, -0.4549041713641486)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.244391761314389, -0.4549041713641486) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-109.476575498932, 0.3888512580817063, 0.3568207440811725)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.3888512580817063, 0.3568207440811725) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-107.65012421993012, 0.3888512580817063, 0.2666290868094702)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.3888512580817063, 0.2666290868094702) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-104.57421619803874, 0.3888512580817063, 0.17643742953776775)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.3888512580817063, 0.17643742953776775) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-98.3658861240326, 0.3888512580817063, 8.624577226606533e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.3888512580817063, 8.624577226606533e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-80.5376777919744, 0.3888512580817063, -3.945885005637084e-3)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.3888512580817063, -3.945885005637084e-3) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-10.304846468766057, 0.3888512580817063, -9.413754227733939e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.3888512580817063, -9.413754227733939e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(36.3843518158359, 0.3888512580817063, -0.1843291995490418)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.3888512580817063, -0.1843291995490418) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(48.01278750418334, 0.3888512580817063, -0.2745208568207441)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.3888512580817063, -0.2745208568207441) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(52.73359809902285, 0.3888512580817063, -0.36471251409244654)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.3888512580817063, -0.36471251409244654) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(55.2568198416964, 0.3888512580817063, -0.4549041713641486)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.3888512580817063, -0.4549041713641486) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-120.39004059367852, 0.5333107548490243, 0.3568207440811725)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.5333107548490243, 0.3568207440811725) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-119.3548748641938, 0.5333107548490243, 0.2666290868094702)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.5333107548490243, 0.2666290868094702) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-117.72207677286723, 0.5333107548490243, 0.17643742953776775)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.5333107548490243, 0.17643742953776775) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-114.77180709318333, 0.5333107548490243, 8.624577226606533e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.5333107548490243, 8.624577226606533e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-107.91023110297346, 0.5333107548490243, -3.945885005637084e-3)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.5333107548490243, -3.945885005637084e-3) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-78.88016563239884, 0.5333107548490243, -9.413754227733939e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.5333107548490243, -9.413754227733939e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(18.07717429682483, 0.5333107548490243, -0.1843291995490418)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.5333107548490243, -0.1843291995490418) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(39.57646251047537, 0.5333107548490243, -0.2745208568207441)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.5333107548490243, -0.2745208568207441) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(45.412192741402315, 0.5333107548490243, -0.36471251409244654)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.5333107548490243, -0.36471251409244654) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(48.061152646549644, 0.5333107548490243, -0.4549041713641486)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.5333107548490243, -0.4549041713641486) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-129.20442853819998, 0.6777702516163411, 0.3568207440811725)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.6777702516163411, 0.3568207440811725) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-128.6756131139764, 0.6777702516163411, 0.2666290868094702)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.6777702516163411, 0.2666290868094702) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-127.8990823601365, 0.6777702516163411, 0.17643742953776775)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.6777702516163411, 0.17643742953776775) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-126.64820118726841, 0.6777702516163411, 8.624577226606533e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.6777702516163411, 8.624577226606533e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-124.30095672615316, 0.6777702516163411, -3.945885005637084e-3)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.6777702516163411, -3.945885005637084e-3) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-118.3399495893263, 0.6777702516163411, -9.413754227733939e-2)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.6777702516163411, -9.413754227733939e-2) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(-81.6026974133102, 0.6777702516163411, -0.1843291995490418)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.6777702516163411, -0.1843291995490418) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(25.916669828467207, 0.6777702516163411, -0.2745208568207441)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.6777702516163411, -0.2745208568207441) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(38.15385704023621, 0.6777702516163411, -0.36471251409244654)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.6777702516163411, -0.36471251409244654) scale(5.0e-2)"/></g></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-2" stroke="#0d0d0d"><g transform="rotate(41.70388402745369, 0.6777702516163411, -0.4549041713641486)"><path d="M -1 0 L 1 0 M 1 0 L 0.4 0.3 M 1 0 L 0.4 -0.3" transform="translate(0.6777702516163411, -0.4549041713641486) scale(5.0e-2)"/></g></g><g></g></svg>
other/bar.svg view
@@ -1,13 +1,13 @@-<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+<svg height="300.0" width="398.2301616785188" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.8200000000000001 -0.5531722096956032 1.59 1.1977997798797322"><g fill-opacity="5.0e-2" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.9019165727170236" y="-0.5" width="0.9952977709753474" x="-0.7118270128238589"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.7118270128238589,0.40191657271702363+0.2834707581514886,0.40191657271702363"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.7118270128238589,0.28917700112739575+0.2834707581514886,0.28917700112739575"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.7118270128238589,0.17643742953776775+0.2834707581514886,0.17643742953776775"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.7118270128238589,6.369785794813976e-2+0.2834707581514886,6.369785794813976e-2"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.7118270128238589,-4.904171364148824e-2+0.2834707581514886,-4.904171364148824e-2"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.7118270128238589,-0.16178128523111612+0.2834707581514886,-0.16178128523111612"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.7118270128238589,-0.2745208568207441+0.2834707581514886,-0.2745208568207441"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.7118270128238589,-0.387260428410372+0.2834707581514886,-0.387260428410372"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.7118270128238589,-0.5+0.2834707581514886,-0.5"/></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.4149943630214205" x="-0.75">-4</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.30225479143179257" x="-0.75">-2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.18951521984216457" x="-0.75">0</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="7.677564825253663e-2" x="-0.75">2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-3.596392333709142e-2" x="-0.75">4</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.1487034949267193" x="-0.75">6</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.2614430665163472" x="-0.75">8</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.3741826381059751" x="-0.75">10</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.4869222096956032" x="-0.75">12</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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@@ -16,7 +16,7 @@ -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.7294106067777567,-0.515"/></g></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.9019165727170236" y="-0.5" width="2.6541273892675132e-3" x="-0.7211164586862954"/></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.6620621242750915" transform="rotate(-45.0, -0.6620621242750915, 0.5)">row 1</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.5625323471775566" transform="rotate(-45.0, -0.5625323471775566, 0.5)">row 2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.46300257008002194" transform="rotate(-45.0, -0.46300257008002194, 0.5)">row 3</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.3634727929824872" transform="rotate(-45.0, -0.3634727929824872, 0.5)">row 4</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.2639430158849524" transform="rotate(-45.0, -0.2639430158849524, 0.5)">row 5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.16441323878741765" transform="rotate(-45.0, -0.16441323878741765, 0.5)">row 6</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-6.48834616898828e-2" transform="rotate(-45.0, -6.48834616898828e-2, 0.5)">row 7</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="3.464631540765173e-2" transform="rotate(-45.0, 3.464631540765173e-2, 0.5)">row 8</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.13417609250518647" transform="rotate(-45.0, 0.13417609250518647, 0.5)">row 9</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.23370586960272122" transform="rotate(-45.0, 0.23370586960272122, 0.5)">row 10</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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@@ -26,4 +26,4 @@ -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>+0.23370586960272122,0.4108173618940248"/></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="3.6076662908681167e-3" y="0.4109357384441939" width="0.9952977709753474" x="-0.7118270128238589"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#b05929" stroke-width="2.0e-3" stroke="#b05929"><rect height="5.6369785794814e-2" y="0.12006764374295376" width="3.981191083901392e-2" x="-0.7018740351141054"/><rect height="0.112739571589628" y="6.369785794813976e-2" width="3.981191083901381e-2" x="-0.6023442580165705"/><rect height="0.16910935738444194" y="7.328072153325815e-3" width="3.981191083901392e-2" x="-0.502814480919036"/><rect height="0.2818489289740699" y="-0.10541149943630213" width="3.9811910839013975e-2" x="-0.4032847038215012"/><rect height="0.4509582863585119" y="-0.2745208568207441" width="3.9811910839013975e-2" x="-0.3037549267239665"/><rect height="0.0" y="0.17643742953776775" width="3.981191083901392e-2" x="-0.20422514962643168"/><rect height="0.112739571589628" y="0.17643742953776775" width="3.981191083901425e-2" x="-0.10469537252889705"/><rect height="0.6200676437429539" y="-0.4436302142051861" width="3.98119108390137e-2" x="-5.165595431362191e-3"/><rect height="0.112739571589628" y="6.369785794813976e-2" width="3.981191083901414e-2" x="9.436418166617233e-2"/><rect height="5.6369785794814e-2" y="0.12006764374295376" width="3.981191083901403e-2" x="0.19389395876370719"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="2.0e-3" stroke="#a6cfe3"><rect height="5.6369785794814e-2" y="0.12006764374295376" width="3.981191083901392e-2" x="-0.6620621242750915"/><rect height="0.112739571589628" y="6.369785794813976e-2" width="3.981191083901392e-2" x="-0.5625323471775567"/><rect height="0.16910935738444194" y="7.328072153325815e-3" width="3.981191083901392e-2" x="-0.4630025700800221"/><rect height="0.225479143179256" y="-4.904171364148824e-2" width="3.981191083901375e-2" x="-0.36347279298248725"/><rect height="0.2818489289740699" y="-0.10541149943630213" width="3.981191083901381e-2" x="-0.2639430158849525"/><rect height="0.3382187147688839" y="-0.16178128523111612" width="3.981191083901381e-2" x="-0.16441323878741776"/><rect height="0.3945885005636979" y="-0.21815107102593012" width="3.981191083901359e-2" x="-6.48834616898828e-2"/><rect height="0.4509582863585119" y="-0.2745208568207441" width="3.981191083901403e-2" x="3.464631540765151e-2"/><rect height="0.5073280721533258" y="-0.330890642615558" width="3.981191083901392e-2" x="0.13417609250518647"/><rect height="0.5636978579481398" y="-0.387260428410372" width="3.981191083901381e-2" x="0.23370586960272122"/></g><g></g><g text-anchor="middle" fill-opacity="1.0" fill="#b05929" stroke-width="0.0" stroke="none" font-size="4.0e-2"><text y="9.075535512965055e-2" x="-0.6819680796945985">1</text><text y="3.43855693348365e-2" x="-0.5824383025970638">2</text><text y="-2.19842164599775e-2" x="-0.482908525499529">3</text><text y="-0.1347237880496054" x="-0.3833787484019942">5</text><text y="-0.30383314543404727" x="-0.28384897130445946">8</text><text y="0.1471251409244645" x="-0.18431919420692466">0</text><text y="0.3624577226606539" x="-8.478941710938992e-2">-2</text><text y="-0.47294250281848926" x="1.4740359988144824e-2">11</text><text y="3.43855693348365e-2" x="0.11427013708567912">2</text><text y="9.075535512965055e-2" x="0.21379991418321442">1</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#a6cfe3" stroke-width="0.0" stroke="none" font-size="4.0e-2"><text y="9.075535512965055e-2" x="-0.6421561688555846">1</text><text y="3.43855693348365e-2" x="-0.5426263917580497">2</text><text y="-2.19842164599775e-2" x="-0.4430966146605151">3</text><text y="-7.835400225479139e-2" x="-0.34356683756298034">4</text><text y="-0.1347237880496054" x="-0.2440370604654456">5</text><text y="-0.19109357384441938" x="-0.14450728336791085">6</text><text y="-0.24746335963923338" x="-4.497750627037611e-2">7</text><text y="-0.30383314543404727" x="5.455227082715863e-2">8</text><text y="-0.3602029312288614" x="0.15408204792469338">9</text><text y="-0.41657271702367527" x="0.2536118250222281">10</text></g><g></g><g fill-opacity="0.0" stroke-opacity="1.0" fill="#0d0d0d" stroke-width="4.0e-3" stroke="#0d0d0d"><rect height="0.24820744081172497" y="-0.1388601712811144" width="0.3187606994510377" x="0.424603982075793"/></g><g text-anchor="start" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.8e-2"><text y="5.0542308989460605e-2" x="0.45114525596846855">column 2</text></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="8.0e-4" stroke="#a6cfe3"><rect height="4.3291995490417234e-2" y="2.0237912146168657e-2" width="3.1849528671210825e-2" x="0.6847084662240173"/></g><g text-anchor="start" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.8e-2"><text y="-6.273841254379753e-2" x="0.45114525596846855">column 1</text></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#b05929" stroke-width="8.0e-4" stroke="#b05929"><rect height="4.329199549041718e-2" y="-9.304280938708964e-2" width="3.1849528671210825e-2" x="0.6847084662240173"/></g><g></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.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+<svg height="300.0" width="430.60959792477314" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.8300000000000001 -0.594 1.6600000000000001 1.1564999999999999"><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.46153846153846156" x="-0.75">0,0</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.2692307692307693" x="-0.75">0,1</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="7.692307692307693e-2" x="-0.75">0,2</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.11538461538461542" x="-0.75">0,3</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.3076923076923077" x="-0.75">0,4</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.5" x="-0.75">0,5</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.46153846153846156" x="-0.44999999999999996">1,0</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.2692307692307693" x="-0.44999999999999996">1,1</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="7.692307692307693e-2" x="-0.44999999999999996">1,2</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.11538461538461542" x="-0.44999999999999996">1,3</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.3076923076923077" x="-0.44999999999999996">1,4</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.5" x="-0.44999999999999996">1,5</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.46153846153846156" x="-0.1499999999999999">2,0</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.2692307692307693" x="-0.1499999999999999">2,1</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="7.692307692307693e-2" x="-0.1499999999999999">2,2</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.11538461538461542" x="-0.1499999999999999">2,3</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.3076923076923077" x="-0.1499999999999999">2,4</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.5" x="-0.1499999999999999">2,5</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.46153846153846156" x="0.15000000000000013">3,0</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.2692307692307693" x="0.15000000000000013">3,1</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="7.692307692307693e-2" x="0.15000000000000013">3,2</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.11538461538461542" x="0.15000000000000013">3,3</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.3076923076923077" x="0.15000000000000013">3,4</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.5" x="0.15000000000000013">3,5</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.46153846153846156" x="0.4500000000000002">4,0</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.2692307692307693" x="0.4500000000000002">4,1</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="7.692307692307693e-2" x="0.4500000000000002">4,2</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.11538461538461542" x="0.4500000000000002">4,3</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.3076923076923077" x="0.4500000000000002">4,4</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.5" x="0.4500000000000002">4,5</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.46153846153846156" x="0.75">5,0</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.2692307692307693" x="0.75">5,1</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="7.692307692307693e-2" x="0.75">5,2</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.11538461538461542" x="0.75">5,3</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.3076923076923077" x="0.75">5,4</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.5" x="0.75">5,5</text></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.495" width="1.0000000000000009e-2" x="-0.755"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.3026923076923077" width="1.0000000000000009e-2" x="-0.755"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.11038461538461541" width="1.0000000000000009e-2" x="-0.755"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-8.192307692307688e-2" width="1.0000000000000009e-2" x="-0.755"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.27423076923076917" width="1.0000000000000009e-2" x="-0.755"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.46653846153846135" width="1.0000000000000009e-2" x="-0.755"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.495" width="1.0000000000000009e-2" x="-0.45499999999999996"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.3026923076923077" width="1.0000000000000009e-2" x="-0.45499999999999996"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.11038461538461541" width="1.0000000000000009e-2" x="-0.45499999999999996"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-8.192307692307688e-2" width="1.0000000000000009e-2" x="-0.45499999999999996"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.27423076923076917" width="1.0000000000000009e-2" x="-0.45499999999999996"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.46653846153846135" width="1.0000000000000009e-2" x="-0.45499999999999996"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.495" width="1.0000000000000009e-2" x="-0.15499999999999992"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.3026923076923077" width="1.0000000000000009e-2" x="-0.15499999999999992"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.11038461538461541" width="1.0000000000000009e-2" x="-0.15499999999999992"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-8.192307692307688e-2" width="1.0000000000000009e-2" x="-0.15499999999999992"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.27423076923076917" width="1.0000000000000009e-2" x="-0.15499999999999992"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.46653846153846135" width="1.0000000000000009e-2" x="-0.15499999999999992"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.495" width="1.0000000000000009e-2" x="0.14500000000000013"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.3026923076923077" width="1.0000000000000009e-2" x="0.14500000000000013"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.11038461538461541" width="1.0000000000000009e-2" x="0.14500000000000013"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-8.192307692307688e-2" width="1.0000000000000009e-2" x="0.14500000000000013"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.27423076923076917" width="1.0000000000000009e-2" x="0.14500000000000013"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.46653846153846135" width="1.0000000000000009e-2" x="0.14500000000000013"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.495" width="1.0000000000000009e-2" x="0.4450000000000002"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.3026923076923077" width="1.0000000000000009e-2" x="0.4450000000000002"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.11038461538461541" width="1.0000000000000009e-2" x="0.4450000000000002"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-8.192307692307688e-2" width="1.0000000000000009e-2" x="0.4450000000000002"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.27423076923076917" width="1.0000000000000009e-2" x="0.4450000000000002"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.46653846153846135" width="1.0000000000000009e-2" x="0.4450000000000002"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.495" width="1.0000000000000009e-2" x="0.745"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.3026923076923077" width="1.0000000000000009e-2" x="0.745"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.11038461538461541" width="1.0000000000000009e-2" x="0.745"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-8.192307692307688e-2" width="1.0000000000000009e-2" x="0.745"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.27423076923076917" width="1.0000000000000009e-2" x="0.745"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.46653846153846135" width="1.0000000000000009e-2" x="0.745"/></g><g stroke-opacity="1.0" fill="none" stroke-width="1.5e-2" stroke="#b05929"><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>+-0.1499999999999999,-0.46153846153846134"/></g><g stroke-opacity="1.0" fill="none" stroke-width="3.0e-2" stroke="#a6cfe3"><polyline points="-0.75,0.5+8.999999999999975e-2,-7.692307692307687e-2"/></g><g stroke-opacity="1.0" fill="none" stroke-width="1.0e-2" stroke="#1f78b5"><polyline points="-0.6,-0.26923076923076916+-0.6,0.5"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#b05929" stroke-width="5.0e-3" stroke="#b05929"><ellipse ry="6.0e-2" rx="4.0e-2" cx="-0.75" cy="0.3076923076923077"/><ellipse ry="6.0e-2" rx="4.0e-2" cx="-0.44999999999999996" cy="0.3076923076923077"/><ellipse ry="6.0e-2" rx="4.0e-2" cx="-0.1499999999999999" cy="-0.46153846153846134"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-3" stroke="#a6cfe3"><rect height="8.000000000000002e-2" y="0.46" width="8.000000000000007e-2" x="-0.79"/><rect height="8.000000000000002e-2" y="-0.11692307692307688" width="8.000000000000002e-2" x="4.9999999999999746e-2"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="5.0e-3" stroke="#1f78b5"><circle r="4.0e-2" cx="-0.6" cy="-0.26923076923076916"/><circle r="4.0e-2" cx="-0.6" cy="0.5"/></g></svg>
other/cubic.svg view
@@ -1,4 +1,4 @@-<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+<svg height="300.0" width="300.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.5365 -0.5365 1.073 1.073"><g fill-opacity="0.1" stroke-opacity="0.0" fill="#1f78b5" stroke-width="1.0e-2" stroke="#000000"><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" fill="none" stroke-width="2.0e-3" stroke="#a6cfe3"><polyline points="-0.5,0.5 -0.470596,0.499702 -0.442368,0.498816 -0.415292,0.497354@@ -98,4 +98,4 @@ 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>+0.5,-0.5"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="3.0e-3" stroke="#1f78b5"><rect height="3.0000000000000027e-2" y="0.485" width="3.0000000000000027e-2" x="-0.515"/><rect height="3.0000000000000027e-2" y="-0.515" width="3.0000000000000027e-2" x="0.485"/><rect height="3.0000000000000027e-2" y="0.485" width="3.0000000000000027e-2" x="0.485"/><rect height="3.0000000000000027e-2" y="-0.515" width="3.0000000000000027e-2" x="-0.515"/><rect height="3.0000000000000027e-2" y="-0.41100000000000014" width="3.0e-2" x="9.30000000000001e-2"/></g><g fill-opacity="0.1" stroke-opacity="1.0" fill="#6666cc" stroke-width="2.0e-3" stroke="#808080"><rect height="1.0" y="-0.5" width="1.0" x="-0.5"/></g></svg>
other/ellipse.svg view
@@ -1,12 +1,12 @@-<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+<svg height="300.0" width="261.40560441808134" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-1.65753 -1.53175 3.19503 3.6667500000000004"><g fill-opacity="5.0e-2" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="3.5" y="-1.5" width="3.0" x="-1.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-1.5,2.0+1.5,2.0"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-1.5,1.5+1.5,1.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-1.5,0.9999999999999998+1.5,0.9999999999999998"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-1.5,0.4999999999999998+1.5,0.4999999999999998"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-1.5,-0.0+1.5,-0.0"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-1.5,-0.49999999999999956+1.5,-0.49999999999999956"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-1.5,-1.0+1.5,-1.0"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-1.5,-1.5+1.5,-1.5"/></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="2.0145" x="-1.5575299999999999">-2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="1.5145" x="-1.5575299999999999">-1.5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="1.0145" x="-1.5575299999999999">-1</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5144999999999997" x="-1.5575299999999999">-0.5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="1.4499999999999957e-2" x="-1.5575299999999999">0</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.4854999999999996" x="-1.5575299999999999">0.5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.9855" x="-1.5575299999999999">1</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-1.4855" x="-1.5575299999999999">1.5</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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@@ -14,21 +14,21 @@ -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.5265,-1.515"/></g></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="3.5" y="-1.5" width="4.0000000000000036e-3" x="-1.514"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-1.5,2.0+-1.5,-1.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-1.0,2.0+-1.0,-1.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.5,2.0+-0.5,-1.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="2.220446049250313e-16,2.0+2.220446049250313e-16,-1.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.5,2.0+0.5,-1.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="1.0,2.0+1.0,-1.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="1.5,2.0+1.5,-1.5"/></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="2.10875" x="-1.5">-1.5</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="2.10875" x="-1.0">-1</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="2.10875" x="-0.5">-0.5</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="2.10875" x="2.220446049250313e-16">0</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="2.10875" x="0.5">0.5</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="2.10875" x="1.0">1</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="2.10875" x="1.5">1.5</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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+1.5,2.0115"/></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="4.0000000000000036e-3" y="2.01" width="3.0" x="-1.5"/></g><g stroke-opacity="1.0" fill="none" stroke-width="2.0e-3" stroke="#a6cfe3"><polyline points="1.0,-0.0 0.9940146461148016,6.427210796446392e-2 0.9854684971040975,0.12920580153034256 0.9743808284486222,0.19465462547461154@@ -37,66 +37,66 @@ 0.9261470925601185,0.3926118990573495 0.9051998232386831,0.45863845980980367 0.8818920769005372,0.5244371293937398-0.8562764231902018,0.5898595016689936+0.8562764231902009,0.5898595016689936 0.8284106371404976,0.6547580192182041 0.7983575688633873,0.718986306156377 0.7661850017941774,0.7823994982755582-0.7319654998088261,0.8448545697799767-0.695776243559163,0.9062106558747356+0.731965499808827,0.8448545697799767+0.6957762435591621,0.9062106558747356 0.6576988563951605,0.9663293704804432 0.6178192202669006,1.0250751183572173 0.5762272820214287,1.0823154009340614 0.533016850531415,1.1379211151538344-0.48828538511317676,1.191766844659785+0.48828538511317676,1.1917668446597856 0.4421337757112749,1.2437311426668827-0.39466611534547713,1.2936968058799505+0.39466611534547713,1.2936968058799507 0.3459894653333131,1.3415511388407824 0.2962136138177678,1.3871862081080222 0.2454508281447203,1.430499085696519 0.19381560164866296,1.4713920812270747-0.14142439541777652,1.5097729622630052+0.14142439541777652,1.509772962263005 8.839537562083555e-2,1.545555162336529-3.484814698836969e-2,1.5786579761958062+3.484814698836969e-2,1.5786579761958064 -1.9096516950796172e-2,1.6090067418322525--7.33169462691654e-2,1.6365330088775658--0.12769084906199302,1.6611746929906617+-7.331694626916585e-2,1.6365330088775658+-0.12769084906199346,1.6611746929906617 -0.18209558727154862,1.6828762158863042--0.2364084532921109,1.7015886306895949--0.2905069467318284,1.7172697323335977+-0.2364084532921109,1.7015886306895947+-0.2905069467318284,1.7172697323335975 -0.3442690507072199,1.7298841527510982--0.39757350704712957,1.7394034406457948--0.4503000897854581,1.7458061256630062+-0.39757350704712957,1.7394034406457946+-0.4503000897854581,1.7458061256630064 -0.5023298763257824,1.7490777668151547--0.5535455156662827,1.7492109850528088+-0.5535455156662832,1.7492109850528088 -0.6038314930800136,1.7462054799078195--0.6530743906535195,1.740068030171014--0.7011631430961871,1.730812478602917--0.7479892882433502,1.7184597007119842--0.793447211688153,1.7030375576707697+-0.6530743906535195,1.7400680301710143+-0.7011631430961871,1.7308124786029173+-0.7479892882433502,1.7184597007119844+-0.7934472116881531,1.7030375576707695 -0.8374343849904167,1.6845808334762182--0.879851596925238,1.6631311564958184--0.9206031772497455,1.6387369055765686--0.9595972124833209,1.6114531009285114--0.9967457532146013,1.5813412800289601+-0.8798515969252383,1.6631311564958182+-0.9206031772497455,1.6387369055765684+-0.9595972124833211,1.6114531009285114+-0.9967457532146013,1.5813412800289606 -1.0319650124676871,1.5484693588272997 -1.0651755546801553,1.5129114785634061--1.0963024748666366,1.4747478385451958+-1.0963024748666366,1.4747478385451962 -1.1252755675638715,1.4340645152624427 -1.1520294851761868,1.39095326824487--1.176503885364259,1.3455113331023754--1.19864356714473,1.2978412022141923--1.2183985953937093,1.2480503935616256--1.2357244134733536,1.1962512082257506+-1.176503885364259,1.3455113331023756+-1.1986435671447302,1.297841202214192+-1.2183985953937095,1.2480503935616252+-1.2357244134733536,1.1962512082257508 -1.250581943727494,1.1425604770970392--1.2629376756196518,1.087099297368181+-1.262937675619652,1.0870992973681812 -1.2727637413146469,1.0299927594044442--1.2800379785333331,0.9713696646076042+-1.2800379785333331,0.9713696646076038 -1.2847439805386887,0.9113622349097761--1.2868711331405234,0.850105814552401+-1.2868711331405236,0.8501058145524012 -1.2864146386353401,0.7877385648229778 -1.2833755266273537,0.7244011524380727--1.2777606517062607,0.6602364322754446--1.2695826779870025,0.5953891251708496+-1.277760651706261,0.6602364322754444+-1.2695826779870025,0.5953891251708501 -1.2588600505463818,0.5300054915062731 -1.2456169538209676,0.4642330013257634 -1.2298832570601115,0.3982200017229365@@ -112,29 +112,29 @@ -0.9460269464918963,-0.24254548694528744 -0.9064017121410812,-0.3014974475186629 -0.8650509635083893,-0.3589628445957551--0.8220679654734301,-0.41481206738311327+-0.8220679654734303,-0.41481206738311327 -0.7775496643859012,-0.4689191503006187--0.7315964694071551,-0.5211620570915811--0.6843120260415455,-0.5714229560703967+-0.7315964694071552,-0.5211620570915811+-0.6843120260415458,-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.37880081119262377,-0.8253621746215027 -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+2.220446049250313e-16,-1.0"/></g><g stroke-opacity="1.0" fill="none" stroke-width="2.0e-3" stroke="#a6cfe3"><polyline points="0.6086376856300113,-0.9414395063606076 0.5527795469220069,-0.9702714111607404-0.49418194741073407,-0.9938628196756247-0.43307614505076697,-1.0121206273937409-0.36970329652743517,-1.0249727790892234+0.4941819474107332,-0.9938628196756247+0.43307614505076697,-1.01212062739374+0.3697032965274347,-1.0249727790892234 0.3043135055215591,-1.0323685531909215-0.23716483566448598,-1.0342787619572626+0.23716483566448598,-1.034278761957263 0.16852229207883185,-1.0306958666669384 9.865677552433416e-2,-1.0216340073707895 2.784401327631536e-2,-1.0071289470874882@@ -143,14 +143,14 @@ -0.18747102762529155,-0.931632978511518 -0.25925733483228797,-0.896138490126698 -0.3305783642546314,-0.8556960742278399--0.4011526443726703,-0.8104653385541147+-0.4011526443726703,-0.8104653385541138 -0.4707016507451012,-0.7606247881552686--0.5389509052176902,-0.7063711209137442+-0.5389509052176902,-0.7063711209137438 -0.6056310591631523,-0.647918451268001 -0.6704789564771294,-0.5854974652006466--0.7332386721351098,-0.5193545098262526+-0.73323867213511,-0.5193545098262526 -0.7936625222115783,-0.44975062117184006--0.8515120413753137,-0.3769604939869362+-0.8515120413753138,-0.3769604939869362 -0.9065589240031089,-0.3012713976488932 -0.9585859251977599,-0.222982042441898 -1.0073877181544273,-0.14240140068395002@@ -162,49 +162,49 @@ -1.2226657855041465,0.3709181779444952 -1.2442999965107613,0.4582885974340818 -1.261581416370263,0.5452616395019807--1.2744418432135962,0.6314940612853537--1.2828305228113803,0.7166455428112668--1.286714348877666,0.8003800300841502+-1.2744418432135962,0.6314940612853532+-1.2828305228113805,0.7166455428112668+-1.2867143488776662,0.8003800300841508 -1.2860779937253213,0.8823670613373866 -1.280923968757409,0.9622830712149293 -1.2712726145558277,1.0398126677359452 -1.2571620206063265,1.1146498770028685--1.2386478749767074,1.1864993507405912+-1.2386478749767074,1.1864993507405917 -1.2158032445414615,1.2550775319011742 -1.188718286620198,1.3201137737339654 -1.1574998931678915,1.3813514079046847 -1.1222712689211713,1.438548757448074--1.083171445165512,1.4914800905564687--1.0403547310422663,1.539936511440116+-1.0831714451655121,1.4914800905564687+-1.0403547310422663,1.5399365114401158 -0.993990104560983,1.5837267847434204 -0.944260545720401,1.6226780902635274 -0.891362314369989,1.656636704992708 -0.8355041756619843,1.6854686097928409--0.7769065761507111,1.7090600183077247+-0.7769065761507113,1.7090600183077247 -0.7158007737907442,1.7273178260258404--0.6524279252674126,1.7401699777213238--0.5870381342615362,1.7475657518230214--0.5198894644044634,1.749475960589363--0.45124692081880946,1.7458930652990383--0.38138140426431133,1.7368312060028894+-0.6524279252674126,1.7401699777213235+-0.5870381342615362,1.7475657518230217+-0.5198894644044634,1.7494759605893633+-0.4512469208188099,1.7458930652990385+-0.38138140426431133,1.7368312060028896 -0.3105686420162932,1.7223261457195886--0.23908809969607225,1.7024351292953415--0.16722187834783409,1.6772366574846354+-0.23908809969607225,1.702435129295342+-0.16722187834783409,1.6772366574846351 -9.52536011146865e-2,1.6468301771436185 -2.3467293907689424e-2,1.611335688758798-4.7853735514653994e-2,1.5708932728599398+4.7853735514653994e-2,1.57089327285994 0.11842801563269267,1.5256625371862147 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.45051404339513246,1.234551708458353+0.5109378934716009,1.1649478198039402 0.5687874126353369,1.0921576926190362 0.6238342952631308,1.0164685962809936 0.6758612964577821,0.9381792410739984 0.7246630894144497,0.8575985993160504-0.7700470757517524,0.7750446859863742+0.7700470757517519,0.7750446859863742 0.8118341456095877,0.6908433036655852 0.8498593845139233,0.6053267567417535 0.8839727242188831,0.5188325399567908@@ -217,17 +217,17 @@ 1.0039897201376888,-8.518283145204997e-2 1.0033533649853439,-0.16716986270528666 0.998199340017432,-0.24708587258282888-0.9885479858158503,-0.3246154691038452+0.9885479858158499,-0.3246154691038452 0.9744373918663491,-0.39945267837076814 0.95592324623673,-0.47130215210849125 0.9330786158014837,-0.5398803332690743-0.9059936578802206,-0.604916575101865+0.9059936578802201,-0.604916575101865 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.6086376856300113,-0.9414395063606076"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="3.0e-3" stroke="#1f78b5"><rect height="3.0000000000000027e-2" y="0.34259859931604997" width="3.0000000000000027e-2" x="-0.1563623143699885"/><rect height="3.0e-2" y="-1.5e-2" width="2.9999999999999916e-2" x="0.985"/><rect height="2.9999999999999916e-2" y="-1.015" width="3.0e-2" x="-1.4999999999999777e-2"/></g><g fill-opacity="0.1" stroke-opacity="1.0" fill="#6666cc" stroke-width="2.0e-3" stroke="#808080"><rect height="2.749539690023556" y="-1.0" width="2.287006238108949" x="-1.2870062381089489"/></g><g stroke-dasharray="3.0e-2 1.0e-2" stroke-opacity="1.0" stroke-linecap="round" fill="none" stroke-width="5.0e-3" stroke="#e63305"><polyline points="0.6086376856300113,-0.9414395063606076+-0.891362314369989,1.656636704992708"/></g><g stroke-dasharray="3.0e-2 1.0e-2" stroke-opacity="1.0" stroke-linecap="round" fill="none" stroke-width="5.0e-3" stroke="#e6e605"><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="#b05929" stroke-width="1.5e-2" fill="none"><polyline points="-0.75,0.30000000000000004+<svg height="300.0" width="425.764192139738" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.8125 -0.5825 1.6249999999999998 1.145"><g stroke-opacity="1.0" fill="none" stroke-width="1.5e-2" stroke="#b05929"><polyline points="-0.75,0.30000000000000004 -0.2142857142857144,0.30000000000000004-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>+0.3214285714285712,-0.5"/></g><g stroke-opacity="1.0" fill="none" stroke-width="3.0e-2" stroke="#a6cfe3"><polyline points="-0.75,0.5+0.7499999999999998,-0.10000000000000009"/></g><g stroke-opacity="1.0" fill="none" stroke-width="1.0e-2" stroke="#1f78b5"><polyline points="-0.4821428571428572,-0.30000000000000004+-0.4821428571428572,0.5"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#b05929" stroke-width="5.0e-3" stroke="#b05929"><ellipse ry="6.0e-2" rx="4.0e-2" cx="-0.75" cy="0.30000000000000004"/><ellipse ry="6.0e-2" rx="4.0e-2" cx="-0.2142857142857144" cy="0.30000000000000004"/><ellipse ry="6.0e-2" rx="4.0e-2" cx="0.3214285714285712" cy="-0.5"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="5.0e-3" stroke="#a6cfe3"><rect height="8.000000000000002e-2" y="0.46" width="8.000000000000007e-2" x="-0.79"/><rect height="8.000000000000002e-2" y="-0.1400000000000001" width="8.000000000000007e-2" x="0.7099999999999997"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="5.0e-3" stroke="#1f78b5"><circle r="4.0e-2" cx="-0.4821428571428572" cy="-0.30000000000000004"/><circle r="4.0e-2" cx="-0.4821428571428572" cy="0.5"/></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="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>+<svg height="50.0" width="401.25" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.8250000000000001 -0.15 1.605 0.2"><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="1.0e-2" stroke="#1f78b5"><circle r="5.0e-2" cx="-0.75" cy="-2.5e-2"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="1.0e-2" stroke="#1f78b5"><rect height="0.1" y="-7.500000000000001e-2" width="0.10000000000000009" x="-0.6125"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="1.0e-2" stroke="#1f78b5"><rect height="7.500000000000001e-2" y="-6.25e-2" width="9.999999999999998e-2" x="-0.42500000000000004"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="1.0e-2" stroke="#1f78b5"><rect height="7.500000000000001e-2" y="-6.25e-2" width="9.999999999999998e-2" ry="1.0e-2" x="-0.2375" rx="1.0e-2"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="0.0" stroke="#1f78b5"><ellipse ry="3.7500000000000006e-2" rx="5.0e-2" cx="-1.1102230246251565e-16" cy="-2.5e-2"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="1.0e-2" stroke="#1f78b5"><polyline points="0.18749999999999978,2.5e-2+0.18749999999999978,-7.500000000000001e-2"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="1.0e-2" stroke="#1f78b5"><polyline points="0.325,-2.5e-2+0.425,-2.5e-2"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="1.0e-2" stroke="#1f78b5"><polygon points="0.0,-0.0 0.1,-0.1 0.1,-0.0" transform="translate(0.5625, -2.5e-2)"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="1.0e-2" stroke="#1f78b5"><path 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" transform="translate(0.7499999999999998, -2.5e-2) scale(0.1)"/></g></svg>
other/hudoptions.svg view
@@ -1,15 +1,15 @@-<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+<svg height="300.0" width="457.74043453182077" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.87 -0.5531722096956032 1.6775 1.0994222096956032"><g fill-opacity="5.0e-2" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.9019165727170236" y="-0.5" width="1.4445949676731749" x="-0.6945949676731749"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,0.40191657271702363+0.75,0.40191657271702363"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,0.3117249154453213+0.75,0.3117249154453213"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,0.2215332581736189+0.75,0.2215332581736189"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,0.13134160090191654+0.75,0.13134160090191654"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,4.114994363021418e-2+0.75,4.114994363021418e-2"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,-4.904171364148813e-2+0.75,-4.904171364148813e-2"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,-0.13923337091319066+0.75,-0.13923337091319066"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,-0.22942502818489297+0.75,-0.22942502818489297"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,-0.3196166854565953+0.75,-0.3196166854565953"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,-0.4098083427282976+0.75,-0.4098083427282976"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,-0.5+0.75,-0.5"/></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.41499436302142045" x="-0.75">-0.5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.3248027057497182" x="-0.75">-0.4</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.23461104847801584" x="-0.75">-0.3</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.14441939120631336" x="-0.75">-0.2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="5.4227733934611055e-2" x="-0.75">-0.1</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-3.596392333709142e-2" x="-0.75">0</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.12615558060879384" x="-0.75">0.1</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.21634723788049615" x="-0.75">0.2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.30653889515219834" x="-0.75">0.3</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.3967305524239009" x="-0.75">0.4</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.4869222096956032" x="-0.75">0.5</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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@@ -20,18 +20,18 @@ -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.7201161454354009,-0.515"/></g></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.9019165727170236" y="-0.5" width="3.8522532471284565e-3" x="-0.7080778540381245"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,0.40191657271702363+-0.6945949676731749,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.5501354709058575,0.40191657271702363+-0.5501354709058575,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.40567597413853984,0.40191657271702363+-0.40567597413853984,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.2612164773712222,0.40191657271702363+-0.2612164773712222,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.11675698060390471,0.40191657271702363+-0.11675698060390471,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="2.770251616341257e-2,0.40191657271702363+2.770251616341257e-2,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.1721620129307302,0.40191657271702363+0.1721620129307302,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.3166215096980478,0.40191657271702363+0.3166215096980478,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.4610810064653652,0.40191657271702363+0.4610810064653652,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.6055405032326826,0.40191657271702363+0.6055405032326826,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.75,0.40191657271702363+0.75,-0.5"/></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.6945949676731749">-0.5</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.5501354709058575">-0.4</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.40567597413853984">-0.3</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.2612164773712222">-0.2</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.11675698060390471">-0.1</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="2.770251616341257e-2">0</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.1721620129307302">0.1</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.3166215096980478">0.2</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.4610810064653652">0.3</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.6055405032326826">0.4</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.75">0.5</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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@@ -42,4 +42,4 @@ 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>+0.75,0.41081736189402474"/></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="3.6076662908680612e-3" y="0.41093573844419395" width="1.4445949676731749" x="-0.6945949676731749"/></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="#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>+<svg height="300.0" width="300.0000000000001" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.6040702012600883 -0.6493250352560272 1.2533952365161158 1.2533952365161154"><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-1.131370849898472e-2" x="1.1313708498984831e-2" transform="rotate(45.0, 1.1313708498984831e-2, -1.131370849898472e-2)">text at (1,1) rotated by -(pi/4) radians</text></g></svg>
other/legend.svg view
@@ -1,15 +1,15 @@-<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+<svg height="300.0" width="471.9812426729191" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.87 -0.52 1.6775 1.0662500000000001"><g fill-opacity="5.0e-2" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.8481404520588612" y="-0.44037572622026233" width="1.4445949676731749" x="-0.6945949676731749"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,0.4077647258385989+0.75,0.4077647258385989"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,0.32295068063271276+0.75,0.32295068063271276"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,0.23813663542682662+0.75,0.23813663542682662"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,0.15332259022094047+0.75,0.15332259022094047"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,6.850854501505443e-2+0.75,6.850854501505443e-2"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,-1.6305500190831768e-2+0.75,-1.6305500190831768e-2"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,-0.10111954539671786+0.75,-0.10111954539671786"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,-0.18593359060260406+0.75,-0.18593359060260406"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,-0.27074763580849015+0.75,-0.27074763580849015"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,-0.35556168101437624+0.75,-0.35556168101437624"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,-0.44037572622026233+0.75,-0.44037572622026233"/></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.42006276239345225" x="-0.75">-0.5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.33524871718756627" x="-0.75">-0.4</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.2504346719816801" x="-0.75">-0.3</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.16562062677579398" x="-0.75">-0.2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="8.080658156990789e-2" x="-0.75">-0.1</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-4.007463635978259e-3" x="-0.75">0</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-8.882150884186446e-2" x="-0.75">0.1</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.17363555404775055" x="-0.75">0.2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.25844959925363653" x="-0.75">0.3</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.34326364445952273" x="-0.75">0.4</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.4280776896654086" x="-0.75">0.5</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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@@ -20,18 +20,18 @@ -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.7201161454354009,-0.45537572622026234"/></g></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.8481404520588612" y="-0.44037572622026233" width="3.8522532471284565e-3" x="-0.7080778540381245"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6945949676731749,0.4077647258385989+-0.6945949676731749,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.5501354709058575,0.4077647258385989+-0.5501354709058575,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.40567597413853984,0.4077647258385989+-0.40567597413853984,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.2612164773712222,0.4077647258385989+-0.2612164773712222,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.11675698060390471,0.4077647258385989+-0.11675698060390471,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="2.770251616341257e-2,0.4077647258385989+2.770251616341257e-2,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.1721620129307302,0.4077647258385989+0.1721620129307302,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.3166215096980478,0.4077647258385989+0.3166215096980478,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.4610810064653652,0.4077647258385989+0.4610810064653652,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.6055405032326826,0.4077647258385989+0.6055405032326826,-0.44037572622026233"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.75,0.4077647258385989+0.75,-0.44037572622026233"/></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.6945949676731749">-0.5</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.5501354709058575">-0.4</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.40567597413853984">-0.3</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.2612164773712222">-0.2</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.11675698060390471">-0.1</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="2.770251616341257e-2">0</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.1721620129307302">0.1</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.3166215096980478">0.2</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.4610810064653652">0.3</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.6055405032326826">0.4</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.75">0.5</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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@@ -42,5 +42,5 @@ 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>+0.75,0.4152404478181586"/></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="3.392561808235439e-3" y="0.41624613035918745" width="1.4445949676731749" x="-0.6945949676731749"/></g><g></g><g fill-opacity="0.0" stroke-opacity="1.0" fill="#0d0d0d" stroke-width="3.0e-3" stroke="#0d0d0d"><rect height="0.532292947712141" y="-0.49363894660955854" width="0.6991839643538167" x="-1.1893831900509078e-3"/></g><g text-anchor="start" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.8e-2"><text y="-8.163351851066647e-3" x="2.770251616341257e-2">blank</text></g><g></g><g text-anchor="start" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.8e-2"><text y="-9.26381408761292e-2" x="2.770251616341257e-2">abcdefghijklmnopqrst</text></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="3.0e-3" stroke="#1f78b5"><rect height="3.6000000000000004e-2" y="-0.11878028921589433" width="3.600000000000003e-2" x="0.5470918441378338"/></g><g text-anchor="start" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.8e-2"><text y="-0.17711292990119176" x="2.770251616341257e-2">line</text></g><g stroke-opacity="1.0" fill="none" stroke-width="1.2e-2" stroke="#0d0d0d"><polyline points="0.5477567045257556,-0.18525507824095677+0.6170972629740679,-0.18525507824095677"/></g><g text-anchor="start" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.8e-2"><text y="-0.2615877189262543" x="2.770251616341257e-2">text</text></g><g text-anchor="start" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="3.6e-2"><text y="-0.26362325601119563" x="0.5477567045257556">content</text></g><g text-anchor="start" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.8e-2"><text y="-0.3460625079513169" x="2.770251616341257e-2">rect</text></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="3.0e-3" stroke="#a6cfe3"><rect height="3.0533056274118953e-2" y="-0.3694711844281414" width="3.467027922415622e-2" x="0.5477567045257556"/></g><g text-anchor="start" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.8e-2"><text y="-0.4305372969763793" x="2.770251616341257e-2">glyph</text></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="3.0e-3" stroke="#1f78b5"><rect height="3.600000000000003e-2" y="-0.45667944531614446" width="3.600000000000003e-2" x="0.5470918441378336"/></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.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>+<svg height="300.0" width="445.0402144772118" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.8300000000000001 -0.594 1.6600000000000001 1.119"><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.46153846153846156" x="-0.75">0,0</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.2692307692307693" x="-0.75">0,1</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="7.692307692307693e-2" x="-0.75">0,2</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.11538461538461542" x="-0.75">0,3</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.3076923076923077" x="-0.75">0,4</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.5" x="-0.75">0,5</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.46153846153846156" x="-0.44999999999999996">1,0</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.2692307692307693" x="-0.44999999999999996">1,1</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="7.692307692307693e-2" x="-0.44999999999999996">1,2</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.11538461538461542" x="-0.44999999999999996">1,3</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.3076923076923077" x="-0.44999999999999996">1,4</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.5" x="-0.44999999999999996">1,5</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.46153846153846156" x="-0.1499999999999999">2,0</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.2692307692307693" x="-0.1499999999999999">2,1</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="7.692307692307693e-2" x="-0.1499999999999999">2,2</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.11538461538461542" x="-0.1499999999999999">2,3</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.3076923076923077" x="-0.1499999999999999">2,4</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.5" x="-0.1499999999999999">2,5</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.46153846153846156" x="0.15000000000000013">3,0</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.2692307692307693" x="0.15000000000000013">3,1</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="7.692307692307693e-2" x="0.15000000000000013">3,2</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.11538461538461542" x="0.15000000000000013">3,3</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.3076923076923077" x="0.15000000000000013">3,4</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.5" x="0.15000000000000013">3,5</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.46153846153846156" x="0.4500000000000002">4,0</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.2692307692307693" x="0.4500000000000002">4,1</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="7.692307692307693e-2" x="0.4500000000000002">4,2</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.11538461538461542" x="0.4500000000000002">4,3</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.3076923076923077" x="0.4500000000000002">4,4</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.5" x="0.4500000000000002">4,5</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.46153846153846156" x="0.75">5,0</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.2692307692307693" x="0.75">5,1</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="7.692307692307693e-2" x="0.75">5,2</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.11538461538461542" x="0.75">5,3</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.3076923076923077" x="0.75">5,4</text></g><g text-anchor="middle" fill-opacity="0.2" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.5" x="0.75">5,5</text></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.495" width="1.0000000000000009e-2" x="-0.755"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.3026923076923077" width="1.0000000000000009e-2" x="-0.755"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.11038461538461541" width="1.0000000000000009e-2" x="-0.755"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-8.192307692307688e-2" width="1.0000000000000009e-2" x="-0.755"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.27423076923076917" width="1.0000000000000009e-2" x="-0.755"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.46653846153846146" width="1.0000000000000009e-2" x="-0.755"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.495" width="1.0000000000000009e-2" x="-0.45499999999999996"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.3026923076923077" width="1.0000000000000009e-2" x="-0.45499999999999996"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.11038461538461541" width="1.0000000000000009e-2" x="-0.45499999999999996"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-8.192307692307688e-2" width="1.0000000000000009e-2" x="-0.45499999999999996"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.27423076923076917" width="1.0000000000000009e-2" x="-0.45499999999999996"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.46653846153846146" width="1.0000000000000009e-2" x="-0.45499999999999996"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.495" width="1.0000000000000009e-2" x="-0.15499999999999992"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.3026923076923077" width="1.0000000000000009e-2" x="-0.15499999999999992"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.11038461538461541" width="1.0000000000000009e-2" x="-0.15499999999999992"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-8.192307692307688e-2" width="1.0000000000000009e-2" x="-0.15499999999999992"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.27423076923076917" width="1.0000000000000009e-2" x="-0.15499999999999992"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.46653846153846146" width="1.0000000000000009e-2" x="-0.15499999999999992"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.495" width="1.0000000000000009e-2" x="0.14500000000000013"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.3026923076923077" width="1.0000000000000009e-2" x="0.14500000000000013"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.11038461538461541" width="1.0000000000000009e-2" x="0.14500000000000013"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-8.192307692307688e-2" width="1.0000000000000009e-2" x="0.14500000000000013"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.27423076923076917" width="1.0000000000000009e-2" x="0.14500000000000013"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.46653846153846146" width="1.0000000000000009e-2" x="0.14500000000000013"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.495" width="1.0000000000000009e-2" x="0.4450000000000002"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.3026923076923077" width="1.0000000000000009e-2" x="0.4450000000000002"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.11038461538461541" width="1.0000000000000009e-2" x="0.4450000000000002"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-8.192307692307688e-2" width="1.0000000000000009e-2" x="0.4450000000000002"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.27423076923076917" width="1.0000000000000009e-2" x="0.4450000000000002"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.46653846153846146" width="1.0000000000000009e-2" x="0.4450000000000002"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.495" width="1.0000000000000009e-2" x="0.745"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.3026923076923077" width="1.0000000000000009e-2" x="0.745"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="0.11038461538461541" width="1.0000000000000009e-2" x="0.745"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-8.192307692307688e-2" width="1.0000000000000009e-2" x="0.745"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.27423076923076917" width="1.0000000000000009e-2" x="0.745"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="0.0" stroke="#1f78b5"><rect height="1.0000000000000009e-2" y="-0.46653846153846146" width="1.0000000000000009e-2" x="0.745"/></g></svg>
other/line.svg view
@@ -1,15 +1,15 @@-<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+<svg height="300.0" width="441.21648345456595" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.8759951587651147 -0.594 1.6769903175302294 1.14025"><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.3752423510316214" transform="rotate(-0.0, 0.3752423510316214, 0.5)">An example from chart-svg</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.5" x="-0.22980689995525283" transform="rotate(-0.0, -0.22980689995525283, -0.5)">Line Chart</text></g><g fill-opacity="5.0e-2" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.7704160246533129" y="-0.444722650231125" width="1.0772198435402474" x="-0.728907988597132"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.728907988597132,0.32569337442218793+0.34831185494311523,0.32569337442218793"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.728907988597132,0.24865177195685662+0.34831185494311523,0.24865177195685662"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.728907988597132,0.17161016949152536+0.34831185494311523,0.17161016949152536"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.728907988597132,9.456856702619398e-2+0.34831185494311523,9.456856702619398e-2"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.728907988597132,1.7526964560862723e-2+0.34831185494311523,1.7526964560862723e-2"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.728907988597132,-5.951463790446854e-2+0.34831185494311523,-5.951463790446854e-2"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.728907988597132,-0.13655624036979985+0.34831185494311523,-0.13655624036979985"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.728907988597132,-0.21359784283513117+0.34831185494311523,-0.21359784283513117"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.728907988597132,-0.2906394453004625+0.34831185494311523,-0.2906394453004625"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.728907988597132,-0.3676810477657938+0.34831185494311523,-0.3676810477657938"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.728907988597132,-0.444722650231125+0.34831185494311523,-0.444722650231125"/></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.3368644067796609" x="-0.7809951587651147">0.0</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.2598228043143297" x="-0.7809951587651147">0.5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.18278120184899838" x="-0.7809951587651147">1.0</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.105739599383667" x="-0.7809951587651147">1.5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="2.869799691833569e-2" x="-0.7809951587651147">2.0</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-4.834360554699557e-2" x="-0.7809951587651147">2.5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.1253852080123269" x="-0.7809951587651147">3.0</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.20242681047765798" x="-0.7809951587651147">3.5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.2794684129429895" x="-0.7809951587651147">4.0</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.3565100154083205" x="-0.7809951587651147">4.5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.43355161787365204" x="-0.7809951587651147">5.0</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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@@ -20,25 +20,25 @@ -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.7587110709350788,-0.459722650231125"/></g></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.7704160246533129" y="-0.444722650231125" width="2.872586249440645e-3" x="-0.7497342389055768"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.728907988597132,0.32569337442218793+-0.728907988597132,-0.444722650231125"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.5493713480070908,0.32569337442218793+-0.5493713480070908,-0.444722650231125"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.36983470741704955,0.32569337442218793+-0.36983470741704955,-0.444722650231125"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.19029806682700834,0.32569337442218793+-0.19029806682700834,-0.444722650231125"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-1.0761426236967186e-2,0.32569337442218793+-1.0761426236967186e-2,-0.444722650231125"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.16877521435307408,0.32569337442218793+0.16877521435307408,-0.444722650231125"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.34831185494311523,0.32569337442218793+0.34831185494311523,-0.444722650231125"/></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.4210323574730354" x="-0.728907988597132">0.0</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.4210323574730354" x="-0.5493713480070908">0.5</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.4210323574730354" x="-0.36983470741704955">1.0</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.4210323574730354" x="-0.19029806682700834">1.5</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.4210323574730354" x="-1.0761426236967186e-2">2.0</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.4210323574730354" x="0.16877521435307408">2.5</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.4210323574730354" x="0.34831185494311523">3.0</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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.34831185494311523,0.3426656394453004"/></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="3.0816640986132127e-3" y="0.34495377503852076" width="1.0772198435402474" x="-0.728907988597132"/></g><g stroke-opacity="1.0" fill="none" stroke-width="1.5e-2" stroke="#b05929"><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+-1.0761426236967186e-2,-0.444722650231125"/></g><g stroke-opacity="1.0" fill="none" stroke-width="3.0e-2" stroke="#a6cfe3"><polyline points="-0.728907988597132,0.32569337442218793+0.27649719870709877,-0.13655624036979985"/></g><g stroke-opacity="1.0" fill="none" stroke-width="1.0e-2" stroke="#1f78b5"><polyline points="-0.5493713480070908,-0.2906394453004625+-0.5493713480070908,0.32569337442218793"/></g><g></g><g fill-opacity="0.0" stroke-opacity="1.0" fill="#0d0d0d" stroke-width="2.5e-3" stroke="#0d0d0d"><rect height="0.17758089368258856" y="-0.15995762711864414" width="0.2764864265086635" x="0.5000203162417001"/></g><g text-anchor="start" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="3.0e-2"><text y="-1.3771186440677985e-2" x="0.5179739803007044">vertical</text></g><g stroke-opacity="1.0" fill="none" stroke-width="1.0e-2" stroke="#1f78b5"><polyline points="0.6400588959019324,-1.839368258859786e-2+0.7477808802559571,-1.839368258859786e-2"/></g><g text-anchor="start" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="3.0e-2"><text y="-6.654468412942993e-2" x="0.5179739803007044">line</text></g><g stroke-opacity="1.0" fill="none" stroke-width="3.0e-2" stroke="#a6cfe3"><polyline points="0.6400588959019324,-7.11671802773498e-2+0.7477808802559571,-7.11671802773498e-2"/></g><g text-anchor="start" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="3.0e-2"><text y="-0.11931818181818199" x="0.5179739803007044">hockey</text></g><g stroke-opacity="1.0" fill="none" stroke-width="1.5e-2" stroke="#b05929"><polyline points="0.6400588959019324,-0.12394067796610186 0.7477808802559571,-0.12394067796610186"/></g><g></g></svg>
other/path.svg view
@@ -1,13 +1,13 @@-<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+<svg height="300.0" width="264.1756768643528" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.6012842749868601 -0.6332546448113643 1.1440685499737202 1.29921334570234"><g fill-opacity="5.0e-2" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.8962313923197105" y="-0.5" width="0.8000434283917985" x="-0.3737591534049384"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.3737591534049384,0.3962313923197103+0.4262842749868601,0.3962313923197103"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.3737591534049384,0.2842024682797465+0.4262842749868601,0.2842024682797465"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.3737591534049384,0.1721735442397827+0.4262842749868601,0.1721735442397827"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.3737591534049384,6.014462019981892e-2+0.4262842749868601,6.014462019981892e-2"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.3737591534049384,-5.188430384014486e-2+0.4262842749868601,-5.188430384014486e-2"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.3737591534049384,-0.16391322788010854+0.4262842749868601,-0.16391322788010854"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.3737591534049384,-0.27594215192007243+0.4262842749868601,-0.27594215192007243"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.3737591534049384,-0.3879710759600362+0.4262842749868601,-0.3879710759600362"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.3737591534049384,-0.5+0.4262842749868601,-0.5"/></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.4092267475083461" x="-0.4262842749868601">0</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.2971978234683823" x="-0.4262842749868601">0.2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.18516889942841852" x="-0.4262842749868601">0.4</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="7.313997538845474e-2" x="-0.4262842749868601">0.6</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-3.888894865150905e-2" x="-0.4262842749868601">0.8</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.15091787269147272" x="-0.4262842749868601">1</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.2629467967314366" x="-0.4262842749868601">1.2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.3749757207714005" x="-0.4262842749868601">1.4</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.4870046448113643" x="-0.4262842749868601">1.6</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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@@ -16,15 +16,15 @@ -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.3979537600783423,-0.515"/></g></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.8962313923197105" y="-0.5" width="3.652016101645894e-3" x="-0.386541209760699"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.3737591534049384,0.3962313923197105+-0.3737591534049384,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.25946723506325287,0.3962313923197105+-0.25946723506325287,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.14517531672156742,0.3962313923197105+-0.14517531672156742,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-3.0883398379881855e-2,0.3962313923197105+-3.0883398379881855e-2,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="8.34085199618036e-2,0.3962313923197105+8.34085199618036e-2,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.197700438303489,0.3962313923197105+0.197700438303489,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.3119923566451746,0.3962313923197105+0.3119923566451746,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.4262842749868601,0.3962313923197105+0.4262842749868601,-0.5"/></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="3.694245123030814e-2"><text y="0.5" x="-0.3737591534049384" transform="rotate(-45.0, -0.3737591534049384, 0.5)">-0.4</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="3.694245123030814e-2"><text y="0.5" x="-0.25946723506325287" transform="rotate(-45.0, -0.25946723506325287, 0.5)">-0.2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="3.694245123030814e-2"><text y="0.5" x="-0.14517531672156742" transform="rotate(-45.0, -0.14517531672156742, 0.5)">0</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="3.694245123030814e-2"><text y="0.5" x="-3.0883398379881855e-2" transform="rotate(-45.0, -3.0883398379881855e-2, 0.5)">0.2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="3.694245123030814e-2"><text y="0.5" x="8.34085199618036e-2" transform="rotate(-45.0, 8.34085199618036e-2, 0.5)">0.4</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="3.694245123030814e-2"><text y="0.5" x="0.197700438303489" transform="rotate(-45.0, 0.197700438303489, 0.5)">0.6</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="3.694245123030814e-2"><text y="0.5" x="0.3119923566451746" transform="rotate(-45.0, 0.3119923566451746, 0.5)">0.8</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="3.694245123030814e-2"><text y="0.5" x="0.4262842749868601" transform="rotate(-45.0, 0.4262842749868601, 0.5)">1</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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@@ -32,4 +32,4 @@ 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>+0.4262842749868601,0.4197693421894578"/></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="3.584925569278752e-3" y="0.4199815242161827" width="0.8000434283917985" x="-0.3737591534049384"/></g><g fill-opacity="0.1" stroke-opacity="0.3" fill="#1f78b5" stroke-width="1.0e-2" stroke="#33cc66"><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 fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="3.0e-3" stroke="#1f78b5"><rect height="3.0000000000000027e-2" y="0.38123139231971026" width="3.0000000000000027e-2" x="-0.16017531672156743"/><rect height="3.0000000000000027e-2" y="0.38123139231971026" width="3.0000000000000027e-2" x="0.4112842749868601"/><rect height="3.0000000000000027e-2" y="-0.17891322788010855" width="3.0000000000000027e-2" x="0.4112842749868601"/><rect height="3.0000000000000027e-2" y="-0.17891322788010855" width="3.0000000000000027e-2" x="-0.16017531672156743"/><rect height="3.0000000000000027e-2" y="0.38123139231971026" width="3.0000000000000027e-2" x="-0.16017531672156743"/></g><g></g></svg>
other/quad.svg view
@@ -1,15 +1,15 @@-<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+<svg height="300.0" width="332.5498942989464" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.6823211801526162 -0.5833034558344269 1.2811423603052323 1.1557444903171854"><g fill-opacity="5.0e-2" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.8928651148670972" y="-0.5" width="0.9912594250674862" x="-0.45893824491487023"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.45893824491487023,0.39286511486709713+0.532321180152616,0.39286511486709713"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.45893824491487023,0.30357860338038745+0.532321180152616,0.30357860338038745"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.45893824491487023,0.2142920918936777+0.532321180152616,0.2142920918936777"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.45893824491487023,0.12500558040696802+0.532321180152616,0.12500558040696802"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.45893824491487023,3.5719068920258334e-2+0.532321180152616,3.5719068920258334e-2"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.45893824491487023,-5.3567442566451406e-2+0.532321180152616,-5.3567442566451406e-2"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.45893824491487023,-0.14285395405316115+0.532321180152616,-0.14285395405316115"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.45893824491487023,-0.2321404655398709+0.532321180152616,-0.2321404655398709"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.45893824491487023,-0.3214269770265804+0.532321180152616,-0.3214269770265804"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.45893824491487023,-0.41071348851329004+0.532321180152616,-0.41071348851329004"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.45893824491487023,-0.5+0.532321180152616,-0.5"/></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.4058116590326699" x="-0.5323211801526162">-1</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.31652514754596034" x="-0.5323211801526162">-0.8</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.2272386360592506" x="-0.5323211801526162">-0.6</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.1379521245725409" x="-0.5323211801526162">-0.4</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="4.866561308583123e-2" x="-0.5323211801526162">-0.2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-4.062089840087857e-2" x="-0.5323211801526162">0</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.1299074098875883" x="-0.5323211801526162">0.2</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.21919392137429783" x="-0.5323211801526162">0.4</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.30848043286100757" x="-0.5323211801526162">0.6</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.3977669443477173" x="-0.5323211801526162">0.8</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.48705345583442683" x="-0.5323211801526162">1</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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@@ -20,18 +20,18 @@ -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.5015624001927721,-0.515"/></g></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.8928651148670972" y="-0.5" width="3.965037700269958e-3" x="-0.4891716573794286"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.45893824491487023,0.39286511486709713+-0.45893824491487023,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.35981230240812156,0.39286511486709713+-0.35981230240812156,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.26068635990137295,0.39286511486709713+-0.26068635990137295,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.16156041739462423,0.39286511486709713+-0.16156041739462423,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-6.2434474887875624e-2,0.39286511486709713+-6.2434474887875624e-2,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="3.6691467618872986e-2,0.39286511486709713+3.6691467618872986e-2,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.13581741012562165,0.39286511486709713+0.13581741012562165,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.23494335263237032,0.39286511486709713+0.23494335263237032,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.334069295139119,0.39286511486709713+0.334069295139119,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.43319523764586754,0.39286511486709713+0.43319523764586754,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.532321180152616,0.39286511486709713+0.532321180152616,-0.5"/></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.274482758620691e-2"><text y="0.5" x="-0.45893824491487023">0</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.274482758620691e-2"><text y="0.5" x="-0.35981230240812156">0.2</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.274482758620691e-2"><text y="0.5" x="-0.26068635990137295">0.4</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.274482758620691e-2"><text y="0.5" x="-0.16156041739462423">0.6</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.274482758620691e-2"><text y="0.5" x="-6.2434474887875624e-2">0.8</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.274482758620691e-2"><text y="0.5" x="3.6691467618872986e-2">1</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.274482758620691e-2"><text y="0.5" x="0.13581741012562165">1.2</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.274482758620691e-2"><text y="0.5" x="0.23494335263237032">1.4</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.274482758620691e-2"><text y="0.5" x="0.334069295139119">1.6</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.274482758620691e-2"><text y="0.5" x="0.43319523764586754">1.8</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.274482758620691e-2"><text y="0.5" x="0.532321180152616">2</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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@@ -42,7 +42,7 @@ 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.532321180152616,0.4162583148063822"/></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="3.5714604594683785e-3" y="0.41652604041107516" width="0.9912594250674862" x="-0.45893824491487023"/></g><g fill-opacity="0.1" stroke-opacity="0.0" fill="#1f78b5" stroke-width="1.0e-2" stroke="#000000"><path d="M -0.4589,-0.0536 Q 0.5323,0.3929 0.0367,-0.5"/></g><g stroke-opacity="1.0" fill="none" stroke-width="2.0e-3" stroke="#a6cfe3"><polyline points="-0.45893824491487023,-5.3567442566451406e-2 -0.43926174532728063,-4.477272118501041e-2 -0.41988262356721123,-3.624585933802971e-2 -0.40080087963466215,-2.798685702550907e-2@@ -142,4 +142,4 @@ 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>+3.6691467618872986e-2,-0.5"/></g><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="3.0e-3" stroke="#1f78b5"><rect height="3.0e-2" y="-6.85674425664514e-2" width="3.0000000000000027e-2" x="-0.47393824491487024"/><rect height="3.0000000000000027e-2" y="-0.515" width="3.0e-2" x="2.1691467618872987e-2"/><rect height="3.0000000000000027e-2" y="0.3778651148670971" width="3.0000000000000027e-2" x="0.517321180152616"/></g><g fill-opacity="0.1" stroke-opacity="1.0" fill="#6666cc" stroke-width="2.0e-3" stroke="#808080"><rect height="0.5952434099113981" y="-0.5" width="0.6608396167116576" x="-0.45893824491487023"/></g><g></g></svg>
other/rect.svg view
@@ -1,15 +1,15 @@-<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+<svg height="300.0" width="442.8070175438596" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.795 -0.5225 1.5775000000000001 1.06875"><g fill-opacity="5.0e-2" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.9019165727170236" y="-0.5" width="1.5" x="-0.75"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.75,0.40191657271702363+-0.75,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.6,0.40191657271702363+-0.6,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.44999999999999996,0.40191657271702363+-0.44999999999999996,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.29999999999999993,0.40191657271702363+-0.29999999999999993,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.1499999999999999,0.40191657271702363+-0.1499999999999999,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.0,0.40191657271702363+0.0,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.15000000000000013,0.40191657271702363+0.15000000000000013,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.2999999999999998,0.40191657271702363+0.2999999999999998,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.4500000000000002,0.40191657271702363+0.4500000000000002,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.6000000000000001,0.40191657271702363+0.6000000000000001,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.75,0.40191657271702363+0.75,-0.5"/></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.75">-5</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.6">-4</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.44999999999999996">-3</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.29999999999999993">-2</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.1499999999999999">-1</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.0">0</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.15000000000000013">1</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.2999999999999998">2</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.4500000000000002">3</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.6000000000000001">4</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="0.75">5</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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@@ -20,4 +20,4 @@ 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>+0.75,0.41081736189402474"/></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="3.6076662908680057e-3" y="0.41093573844419395" width="1.5" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a6cfe3" stroke-width="0.0" stroke="#000000"><rect height="5.541566947764309e-6" y="0.40191103115007587" width="2.9999999999999916e-2" x="-0.75"/><rect height="1.447289085471093e-5" y="0.4019020998261689" width="3.0000000000000027e-2" x="-0.72"/><rect height="3.631668593628845e-5" y="0.40188025603108735" width="2.9999999999999916e-2" x="-0.69"/><rect height="8.755588746184317e-5" y="0.4018290168295618" width="2.9999999999999916e-2" x="-0.66"/><rect height="2.0281156633938924e-4" y="0.40171376115068425" width="2.9999999999999916e-2" x="-0.63"/><rect height="4.5136544166002324e-4" y="0.4014652072753636" width="2.9999999999999916e-2" x="-0.6"/><rect height="9.651439906557258e-4" y="0.4009514287263679" width="3.0000000000000138e-2" x="-0.5700000000000001"/><rect height="1.982823867456629e-3" y="0.399933748849567" width="3.0000000000000027e-2" x="-0.5399999999999999"/><rect height="3.913851878907693e-3" y="0.39800272083811594" width="3.0000000000000138e-2" x="-0.51"/><rect height="7.422545252780133e-3" y="0.3944940274642435" width="3.0000000000000027e-2" x="-0.48"/><rect height="1.3524759251840046e-2" y="0.3883918134651836" width="3.0000000000000027e-2" x="-0.44999999999999996"/><rect height="2.3677424095321753e-2" y="0.3782391486217019" width="3.0000000000000027e-2" x="-0.41999999999999993"/><rect height="3.982608200197779e-2" y="0.36209049071504584" width="3.0000000000000027e-2" x="-0.3899999999999999"/><rect height="6.43619116630314e-2" y="0.33755466105399223" width="3.0000000000000027e-2" x="-0.36"/><rect height="9.993520483637786e-2" y="0.3019813678806458" width="3.0000000000000027e-2" x="-0.32999999999999996"/><rect height="0.14908580673874772" y="0.2528307659782759" width="3.0000000000000027e-2" x="-0.29999999999999993"/><rect height="0.21368907209210536" y="0.18822750062491828" width="3.0000000000000027e-2" x="-0.2699999999999999"/><rect height="0.29427715411322636" y="0.10763941860379728" width="3.0000000000000138e-2" x="-0.23999999999999988"/><rect height="0.389366875697028" y="1.2549697019995643e-2" width="3.0000000000000027e-2" x="-0.20999999999999996"/><rect height="0.49498230989314684" y="-9.306573717612321e-2" width="3.0000000000000027e-2" x="-0.17999999999999994"/><rect height="0.6045727585439812" y="-0.20265618582695755" width="3.0000000000000027e-2" x="-0.1499999999999999"/><rect height="0.7094727044568689" y="-0.3075561317398453" width="3.0000000000000027e-2" x="-0.11999999999999988"/><rect height="0.7999282405566247" y="-0.39801166783960107" width="3.0000000000000027e-2" x="-8.999999999999986e-2"/><rect height="0.8665519180629746" y="-0.46463534534595097" width="3.0000000000000027e-2" x="-5.999999999999983e-2"/><rect height="0.9019165727170236" y="-0.5" width="3.0000000000000027e-2" x="-2.9999999999999805e-2"/><rect height="0.9019165727170236" y="-0.5" width="3.0000000000000027e-2" x="0.0"/><rect height="0.8665519180629746" y="-0.46463534534595097" width="3.0000000000000027e-2" x="3.0000000000000027e-2"/><rect height="0.7999282405566244" y="-0.39801166783960074" width="3.0000000000000027e-2" x="6.000000000000005e-2"/><rect height="0.7094727044568686" y="-0.307556131739845" width="3.0000000000000027e-2" x="9.000000000000008e-2"/><rect height="0.604572758543981" y="-0.20265618582695732" width="3.0000000000000027e-2" x="0.1200000000000001"/><rect height="0.4949823098931466" y="-9.306573717612299e-2" width="3.0000000000000027e-2" x="0.15000000000000013"/><rect height="0.38936687569702777" y="1.2549697019995865e-2" width="3.0000000000000027e-2" x="0.18000000000000016"/><rect height="0.2942771541132259" y="0.10763941860379772" width="3.0000000000000027e-2" x="0.2100000000000002"/><rect height="0.21368907209210503" y="0.1882275006249186" width="3.0000000000000027e-2" x="0.2400000000000002"/><rect height="0.1490858067387475" y="0.25283076597827614" width="3.0000000000000027e-2" x="0.27000000000000024"/><rect height="9.993520483637774e-2" y="0.3019813678806459" width="3.000000000000025e-2" x="0.2999999999999998"/><rect height="6.436191166303129e-2" y="0.33755466105399234" width="2.9999999999999805e-2" x="0.33000000000000007"/><rect height="3.982608200197768e-2" y="0.36209049071504595" width="3.000000000000025e-2" x="0.3599999999999999"/><rect height="2.3677424095321642e-2" y="0.378239148621702" width="2.9999999999999805e-2" x="0.3900000000000001"/><rect height="1.3524759251840046e-2" y="0.3883918134651836" width="3.000000000000025e-2" x="0.41999999999999993"/><rect height="7.422545252780133e-3" y="0.3944940274642435" width="2.9999999999999805e-2" x="0.4500000000000002"/><rect height="3.913851878907637e-3" y="0.398002720838116" width="3.000000000000025e-2" x="0.4800000000000002"/><rect height="1.982823867456629e-3" y="0.399933748849567" width="2.9999999999999805e-2" x="0.5100000000000002"/><rect height="9.651439906557258e-4" y="0.4009514287263679" width="3.000000000000025e-2" x="0.54"/><rect height="4.5136544166002324e-4" y="0.4014652072753636" width="2.9999999999999805e-2" x="0.5700000000000003"/><rect height="2.0281156633938924e-4" y="0.40171376115068425" width="2.9999999999999805e-2" x="0.6000000000000001"/><rect height="8.755588746184317e-5" y="0.4018290168295618" width="2.9999999999999805e-2" x="0.6300000000000003"/><rect height="3.631668593628845e-5" y="0.40188025603108735" width="2.9999999999999805e-2" x="0.6600000000000001"/><rect height="1.447289085471093e-5" y="0.4019020998261689" width="2.9999999999999805e-2" x="0.6900000000000004"/><rect height="5.541566947764309e-6" y="0.40191103115007587" width="2.9999999999999805e-2" x="0.7200000000000002"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#1f78b5" stroke-width="0.0" stroke="#000000"><rect height="2.253624368773849e-2" y="0.37938032902928515" width="2.9999999999999916e-2" x="-0.75"/><rect height="2.8649180639473637e-2" y="0.37326739207755" width="3.0000000000000027e-2" x="-0.72"/><rect height="3.60578590373129e-2" y="0.36585871367971073" width="2.9999999999999916e-2" x="-0.69"/><rect height="4.493085910119554e-2" y="0.3569857136158281" width="2.9999999999999916e-2" x="-0.66"/><rect height="5.543021508815271e-2" y="0.3464863576288709" width="2.9999999999999916e-2" x="-0.63"/><rect height="6.77026175940812e-2" y="0.33421395512294244" width="2.9999999999999916e-2" x="-0.6"/><rect height="8.186936308598547e-2" y="0.32004720963103817" width="3.0000000000000138e-2" x="-0.5700000000000001"/><rect height="9.801542299426558e-2" y="0.30390114972275806" width="3.0000000000000027e-2" x="-0.5399999999999999"/><rect height="0.11617815637932072" y="0.2857384163377029" width="3.0000000000000138e-2" x="-0.51"/><rect height="0.1363363294829193" y="0.26558024323410434" width="3.0000000000000027e-2" x="-0.48"/><rect height="0.1584002161211413" y="0.24351635659588233" width="3.0000000000000027e-2" x="-0.44999999999999996"/><rect height="0.18220361833747106" y="0.21971295437955257" width="3.0000000000000027e-2" x="-0.41999999999999993"/><rect height="0.20749865210715862" y="0.194417920609865" width="3.0000000000000027e-2" x="-0.3899999999999999"/><rect height="0.23395407695778547" y="0.16796249575923816" width="3.0000000000000027e-2" x="-0.36"/><rect height="0.26115780560242313" y="0.1407587671146005" width="3.0000000000000027e-2" x="-0.32999999999999996"/><rect height="0.28862401178025143" y="0.1132925609367722" width="3.0000000000000027e-2" x="-0.29999999999999993"/><rect height="0.31580497134978075" y="8.611160136724288e-2" width="3.0000000000000027e-2" x="-0.2699999999999999"/><rect height="0.3421074413706784" y="5.9809131346345246e-2" width="3.0000000000000138e-2" x="-0.23999999999999988"/><rect height="0.3669130297379998" y="3.500354297902386e-2" width="3.0000000000000027e-2" x="-0.20999999999999996"/><rect height="0.3896016643794924" y="1.2314908337531238e-2" width="3.0000000000000027e-2" x="-0.17999999999999994"/><rect height="0.4095769688621528" y="-7.660396145129145e-3" width="3.0000000000000027e-2" x="-0.1499999999999999"/><rect height="0.426292122052789" y="-2.4375549335765356e-2" width="3.0000000000000027e-2" x="-0.11999999999999988"/><rect height="0.4392746499579623" y="-3.735807724093865e-2" width="3.0000000000000027e-2" x="-8.999999999999986e-2"/><rect height="0.44814858652689726" y="-4.623201380987363e-2" width="3.0000000000000027e-2" x="-5.999999999999983e-2"/><rect height="0.4526525547000263" y="-5.0735981983002665e-2" width="3.0000000000000027e-2" x="-2.9999999999999805e-2"/><rect height="0.4526525547000263" y="-5.0735981983002665e-2" width="3.0000000000000027e-2" x="0.0"/><rect height="0.44814858652689726" y="-4.623201380987363e-2" width="3.0000000000000027e-2" x="3.0000000000000027e-2"/><rect height="0.4392746499579623" y="-3.735807724093865e-2" width="3.0000000000000027e-2" x="6.000000000000005e-2"/><rect height="0.4262921220527889" y="-2.4375549335765245e-2" width="3.0000000000000027e-2" x="9.000000000000008e-2"/><rect height="0.4095769688621528" y="-7.660396145129145e-3" width="3.0000000000000027e-2" x="0.1200000000000001"/><rect height="0.3896016643794923" y="1.231490833753135e-2" width="3.0000000000000027e-2" x="0.15000000000000013"/><rect height="0.3669130297379998" y="3.500354297902386e-2" width="3.0000000000000027e-2" x="0.18000000000000016"/><rect height="0.3421074413706783" y="5.980913134634536e-2" width="3.0000000000000027e-2" x="0.2100000000000002"/><rect height="0.31580497134978064" y="8.6111601367243e-2" width="3.0000000000000027e-2" x="0.2400000000000002"/><rect height="0.2886240117802512" y="0.11329256093677242" width="3.0000000000000027e-2" x="0.27000000000000024"/><rect height="0.261157805602423" y="0.1407587671146006" width="3.000000000000025e-2" x="0.2999999999999998"/><rect height="0.23395407695778542" y="0.16796249575923822" width="2.9999999999999805e-2" x="0.33000000000000007"/><rect height="0.2074986521071585" y="0.19441792060986512" width="3.000000000000025e-2" x="0.3599999999999999"/><rect height="0.18220361833747095" y="0.21971295437955268" width="2.9999999999999805e-2" x="0.3900000000000001"/><rect height="0.1584002161211412" y="0.24351635659588244" width="3.000000000000025e-2" x="0.41999999999999993"/><rect height="0.1363363294829193" y="0.26558024323410434" width="2.9999999999999805e-2" x="0.4500000000000002"/><rect height="0.11617815637932061" y="0.285738416337703" width="3.000000000000025e-2" x="0.4800000000000002"/><rect height="9.801542299426558e-2" y="0.30390114972275806" width="2.9999999999999805e-2" x="0.5100000000000002"/><rect height="8.186936308598547e-2" y="0.32004720963103817" width="3.000000000000025e-2" x="0.54"/><rect height="6.770261759408114e-2" y="0.3342139551229425" width="2.9999999999999805e-2" x="0.5700000000000003"/><rect height="5.543021508815277e-2" y="0.34648635762887087" width="2.9999999999999805e-2" x="0.6000000000000001"/><rect height="4.493085910119554e-2" y="0.3569857136158281" width="2.9999999999999805e-2" x="0.6300000000000003"/><rect height="3.60578590373129e-2" y="0.36585871367971073" width="2.9999999999999805e-2" x="0.6600000000000001"/><rect height="2.8649180639473526e-2" y="0.3732673920775501" width="2.9999999999999805e-2" x="0.6900000000000004"/><rect height="2.253624368773849e-2" y="0.37938032902928515" width="2.9999999999999805e-2" x="0.7200000000000002"/></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.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+<svg height="300.0" width="478.3649390461253" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.77 -0.52 1.6583317886932345 1.04"><style type="text/css">* { shape-rendering: crispEdges; }</style><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b05929" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ab9385" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a6c9db" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#73aed2" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#3e8cc0" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#356da4" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#725074" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a8364a" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d71f25" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#dc362c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d4563e" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ce704c" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c98256" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c78d5c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c6905e" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c78d5c" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c98256" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ce704c" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d4573e" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#dc372c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.213160333642253e-2" x="-0.75"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#aa9a90" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a3cde2" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#6aa8cf" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#3586bd" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#436698" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#814868" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b82e3d" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#e21e1f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d84735" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d06848" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c98257" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c49561" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c2a168" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c1a56a" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c1a268" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c49863" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c88759" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ce6f4c" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d64f3a" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#df2824" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.213160333642264e-2" x="-0.6978683966635775"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a2cce2" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#67a6ce" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#3184bb" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#4a6393" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#8a4462" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c22936" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#df2a25" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d5543c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#cc7650" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c5925f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c0a66b" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bdb372" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bcb975" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bcb874" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#beaf70" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c29f67" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c8885a" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#cf6a49" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d84534" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#e21a1d" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.213160333642264e-2" x="-0.6457367933271548"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#6ba9cf" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#3385bc" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#496394" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#8b4461" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c52833" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#de2f28" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d35b41" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ca8055" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c29e66" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bdb472" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b9c37b" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b7cb7f" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b7cc80" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b8c67c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bcb875" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c1a369" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c88759" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d16446" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#db3a2e" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d2222a" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.213160333642264e-2" x="-0.5936051899907321"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#3c8bbf" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#40689b" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#844766" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c22a36" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#de2e28" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d25d42" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c88558" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c0a66a" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#babf78" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b6d182" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b3dc89" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b1dd89" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b3dc89" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b6d183" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#babf79" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c0a66b" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c88659" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d25e42" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#de3028" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c32935" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.213160333642253e-2" x="-0.5414735866543094"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#2d71aa" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#754e72" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b62f3f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#e02623" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d3593f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c98458" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c0a86c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b9c57c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b3db88" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#abda84" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a6d881" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a6d881" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#abda84" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b3db88" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b8c67c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c0a96c" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c88558" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d35a40" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#e02724" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b72e3e" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.213160333642258e-2" x="-0.4893419833178869"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#5c5a85" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a1394f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#df1b1f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d64d39" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#cb7c53" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c1a56a" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b8c67c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b1dd89" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a5d780" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#9dd47a" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#9ad278" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#9cd379" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a3d67e" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#aedc86" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b7cc80" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bfad6e" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c88659" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d4583f" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#e12321" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b03244" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.213160333642264e-2" x="-0.4372103799814643"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#824868" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c52833" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#dc372d" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#cf6c4a" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c39a64" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bac079" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b2dd89" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a2d67e" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#97d176" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#91ce71" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#90cd70" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#93cf72" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#9bd378" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a7d982" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b5d484" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bdb271" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c7895b" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d35940" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#e12221" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ad3446" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.213160333642264e-2" x="-0.38507877664504164"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a03a50" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#e11a1d" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d5523c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c88658" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bdb271" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b4d786" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a4d77f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#95d074" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#8bcb6d" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#86c969" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#86c869" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#8aca6c" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#93cf72" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a0d57c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b2de8a" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bbbb76" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c6905e" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d25f43" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#e02623" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#af3244" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.213160333642258e-2" x="-0.332947173308619"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b62f3f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#de2d27" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d06747" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c39a64" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b9c57c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#abda84" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#98d176" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#8acb6c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#81c665" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#7cc462" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#7cc461" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#81c665" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#8aca6c" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#98d176" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#abda84" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b8c67c" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c39b64" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#cf6848" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#de2f28" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b72e3e" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.213160333642258e-2" x="-0.2808155699721964"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c42834" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#db3c2f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#cc754f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c0a86c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b5d384" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a2d67d" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#8fcd6f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#81c665" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#78c25e" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#73bf5b" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#73bf5b" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#77c15e" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#81c665" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#8fcd6f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a1d67d" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b5d484" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c0a96c" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#cc7750" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#da3d30" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c62733" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.213160333642264e-2" x="-0.22868396663577384"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#cb252f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d94333" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ca7e54" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#beb171" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b3dd89" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#9bd378" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#88c96a" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#79c25f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#6fbe58" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#6abb54" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#6abb54" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#6ebd57" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#77c15d" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#84c867" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#96d075" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#addb86" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bbbb77" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c78a5b" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d5513b" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#da1e23" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.213160333642264e-2" x="-0.1765523632993512"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ca2630" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d94434" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ca8055" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bdb472" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b0dd88" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#97d175" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#83c766" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#73c05b" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#69ba53" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#62b74e" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#61b74d" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#64b850" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#6cbc56" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#79c25f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#8aca6c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a0d57c" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b6d283" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c1a168" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#cf6a49" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#df2b26" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.213160333642275e-2" x="-0.12442075996292856"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c12a37" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#da3c30" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#cb7b52" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bdb171" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b0dd88" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#96d075" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#81c665" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#70be58" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#63b84f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#5cb44a" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#59b347" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#5bb449" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#61b74e" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#6cbc56" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#7cc462" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#91ce71" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#aada83" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bbbd77" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c8885a" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d74b38" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.2131603336422416e-2" x="-7.228915662650592e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ae3345" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#de2d27" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ce6e4b" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c0a86c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b3da88" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#99d177" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#81c665" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#6ebd57" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#60b64d" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#57b246" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#52b042" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#52b042" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#57b246" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#60b64d" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#6ebd57" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#81c665" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#98d176" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b3dc88" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bfa96c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ce704c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.213160333642253e-2" x="-2.0157553290083285e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#92405b" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#de1c20" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d35940" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c49762" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b7cd80" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#9fd57b" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#85c868" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#70be59" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#60b64c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#54b044" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#4dad3e" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#4aac3d" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#4dad3e" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#54b044" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#5fb64c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#70be58" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#85c868" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#9ed47b" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b6ce81" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c49863" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.213160333642275e-2" x="3.197405004633924e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#6c5379" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bc2c3b" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#db3b2f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ca7d54" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bcb774" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#aada84" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#8ecc6e" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#76c15d" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#62b74e" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#54b044" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#4aac3c" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#45a938" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#44a938" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#48ab3b" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#51af42" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#5fb64c" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#71be59" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#88c96a" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a3d77e" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b9c47b" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.213160333642253e-2" x="8.410565338276199e-2"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#396ba1" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#8e425e" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#dc1d22" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d35940" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c49963" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b6d182" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#9bd378" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#80c664" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#69bb54" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#57b246" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#4aac3d" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#42a836" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#3ea633" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#3fa634" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#44a938" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#4fae40" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#5eb54b" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#71bf59" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#89ca6b" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a6d881" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.213160333642264e-2" x="0.13623725671918452"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#3989be" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#535f8c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a7374b" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#df2a25" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ce6f4c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bfad6e" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#afdc87" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#90cd70" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#75c05c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#60b64c" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#4fae40" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#43a837" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#3ba531" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#38a32f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#3aa431" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#40a735" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#4cac3e" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#5cb449" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#70be59" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#89ca6b" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.2131603336422416e-2" x="0.18836886005560716"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#70acd1" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.45" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#2d81ba" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.4" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#63577f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.35000000000000003" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b62f3f" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.3" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#db392e" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.25" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ca7d54" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.2" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bbbb76" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="0.14999999999999997" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a6d881" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="9.999999999999998e-2" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#88c96a" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="4.999999999999999e-2" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#6ebd57" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999999e-2" y="-0.0" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#59b347" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-5.0000000000000044e-2" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#48ab3b" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.10000000000000009" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#3ca532" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.15000000000000013" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#35a22d" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.19999999999999996" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#33a12b" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.25" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#35a22d" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.30000000000000004" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#3ca532" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.3500000000000001" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#48ab3b" stroke-width="0.0" stroke="#000000"><rect height="5.0000000000000044e-2" y="-0.40000000000000013" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#58b347" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.44999999999999996" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#6dbd56" stroke-width="0.0" stroke="#000000"><rect height="4.999999999999993e-2" y="-0.5" width="5.213160333642253e-2" x="0.2405004633920298"/></g><g text-anchor="start" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="3.4999999999999996e-2"><text y="-4.559189347347159e-2" x="0.5072203429101021">-6</text></g><g text-anchor="start" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="3.4999999999999996e-2"><text y="-0.1484007790985863" x="0.5072203429101021">-4</text></g><g text-anchor="start" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="3.4999999999999996e-2"><text y="-0.251209664723701" x="0.5072203429101021">-2</text></g><g fill-opacity="1.0" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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>+0.4775254865616312,-0.2718596647237011"/></g></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b05c2d" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-3.4999999999999476e-3" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#af6237" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-7.000000000000006e-3" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#af6840" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-1.0499999999999954e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ae6e49" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-1.4000000000000012e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ae7453" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-1.749999999999996e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ad7a5c" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-2.100000000000002e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ad7f65" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-2.4499999999999966e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ac856f" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-2.8000000000000025e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ac8b78" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-3.149999999999997e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ab9181" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-3.499999999999992e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ab978b" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-3.849999999999998e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#aa9d94" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-4.200000000000004e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#aaa39d" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-4.5499999999999985e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a9a8a6" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-4.899999999999993e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a9aeb0" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-5.249999999999999e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a8b4b9" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-5.600000000000005e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a8bac2" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-5.95e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a7c0cc" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-6.299999999999994e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a7c6d5" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-6.65e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a6ccde" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-6.999999999999995e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a2cce2" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-7.350000000000001e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#9cc8e0" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-7.699999999999996e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#95c4dd" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-8.050000000000002e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#8ebfdb" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-8.399999999999996e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#87bbd9" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-8.750000000000002e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#81b7d6" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-9.099999999999997e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#7ab2d4" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-9.449999999999992e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#73aed2" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-9.799999999999998e-2" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#6caacf" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.10149999999999992" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#66a5cd" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.10499999999999998" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#5fa1cb" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.10850000000000004" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#589dc9" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.11199999999999999" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#5198c6" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.11549999999999994" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#4b94c4" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.119" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#4490c2" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.12250000000000005" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#3d8bbf" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999998366e-3" y="-0.1259999999999999" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#3687bd" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.12949999999999995" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#2f83bb" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.133" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#297eb8" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.13649999999999995" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#227ab6" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.1399999999999999" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#2475b1" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.14349999999999996" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#2d71aa" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.14700000000000002" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#376ca2" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.15049999999999997" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#41679a" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.15399999999999991" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#4b6393" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.15749999999999997" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#555e8b" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.16099999999999992" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#5e5983" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.16449999999999998" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#68547c" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.16799999999999993" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#725074" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.17149999999999999" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#7c4b6c" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.17499999999999993" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#864665" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.1785" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#90425d" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.18199999999999994" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#993d55" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.1855" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a3384e" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.18899999999999995" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ad3346" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.1925" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b72f3e" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.19599999999999995" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c12a37" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.1995" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ca252f" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.20299999999999996" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d42128" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.2064999999999999" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#de1c20" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.20999999999999996" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#e21e1f" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.21350000000000002" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#df2824" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.21699999999999997" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#dd322a" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.22049999999999992" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#da3c2f" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.22399999999999998" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d84635" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.22749999999999992" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d64f3a" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.23099999999999998" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d35940" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.23449999999999993" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#d16345" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.238" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ce6d4b" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.24149999999999994" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#cc7750" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.245" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#ca8156" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.24849999999999994" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c78a5b" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.252" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c59461" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.25549999999999995" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c29e66" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.259" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#c0a86c" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.26249999999999996" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bdb271" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.266" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#bbbb77" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.26949999999999996" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b9c57c" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.2729999999999999" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b6cf81" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.27649999999999997" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#b4d987" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.2799999999999999" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#afdc87" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.2835" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a9d983" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.2869999999999999" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#a3d67e" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.2905" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#9cd379" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.29399999999999993" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#96d074" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.2974999999999999" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#8fcd70" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.30099999999999993" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#89ca6b" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.3045" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#83c766" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.30799999999999994" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#7cc462" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.3114999999999999" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#76c15d" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.31499999999999995" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#70be58" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.3184999999999999" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#69bb53" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.32199999999999984" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#63b84f" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.3254999999999999" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#5cb54a" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.32899999999999996" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#56b145" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.3324999999999999" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#50ae41" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.33599999999999985" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#49ab3c" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.3394999999999999" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#43a837" stroke-width="0.0" stroke="#000000"><rect height="3.5000000000000586e-3" y="-0.34299999999999997" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#3da532" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.3464999999999999" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g fill-opacity="1.0" stroke-opacity="0.0" fill="#36a22e" stroke-width="0.0" stroke="#000000"><rect height="3.4999999999999476e-3" y="-0.34999999999999987" width="2.432808155699706e-2" x="0.44833178869323453"/></g><g text-anchor="start" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.399999999999999e-2"><text y="-0.385" x="0.44833178869323453">rosenbrock</text></g><g></g></svg>
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="#b05929" stroke-width="1.5e-2" fill="none"><polyline points="-0.35,0.29999999999999993+<svg height="300.0" width="217.41176470588235" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.385 -0.5275 0.7699999999999999 1.0625"><g stroke-opacity="1.0" fill="none" stroke-width="1.5e-2" stroke="#b05929"><polyline points="-0.35,0.29999999999999993 -9.999999999999998e-2,0.29999999999999993-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.15000000000000002,-0.5"/></g><g stroke-opacity="1.0" fill="none" stroke-width="3.0e-2" stroke="#a6cfe3"><polyline points="-0.35,0.5+0.34999999999999987,-0.10000000000000009"/></g><g stroke-opacity="1.0" fill="none" stroke-width="1.0e-2" stroke="#1f78b5"><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="#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>+<svg height="300.0" width="422.02247191011236" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.7825 -0.56625 1.565 1.1125"><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.5" x="-0.75">a</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.45833333333333337" x="-0.6001859947935977">b</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.4166666666666667" x="-0.451868881605292">c</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.375" x="-0.3065305960029406">d</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.33333333333333337" x="-0.1656233100938329">e</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.29166666666666674" x="-3.0554922901016246e-2">f</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.25" x="9.732500689835166e-2">g</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.20833333333333343" x="0.2167387453171994">h</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.16666666666666669" x="0.32649314975417987">i</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.125" x="0.4254915904801422">j</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="8.333333333333337e-2" x="0.5127449077998856">k</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="4.166666666666674e-2" x="0.5873812954088635">l</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.0" x="0.6486550111935965">m</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-4.166666666666663e-2" x="0.6959538284403606">n</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-8.333333333333315e-2" x="0.7288051530021376">o</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.125" x="0.7468807453031088">p</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.16666666666666663" x="0.75">q</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.20833333333333326" x="0.738131750530969">r</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.25" x="0.7113945805215882">s</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.29166666666666663" x="0.6700556389364578">t</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.33333333333333326" x="0.6145279708150595">u</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.375" x="0.5453663902622552">v</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.4166666666666665" x="0.4632619369291495">w</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.45833333333333326" x="0.369034971373323">x</text></g><g text-anchor="middle" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.5" x="0.2636269782873162">y</text></g></svg>
other/textlocal.svg view
@@ -1,1 +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>+<svg height="300.0" width="573.2594690189848" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.775 -0.5276917562724014 2.0115517241379313 1.0526917562724014"><g text-anchor="start" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="0.4623655913978495" x="-0.75">a pretty long piece of text</text></g><g text-anchor="start" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="8.0e-2"><text y="-0.4336917562724014" x="-0.10344827586206895">another pretty long piece of text</text></g><g fill-opacity="0.1" stroke-opacity="1.0" fill="#1f78b5" stroke-width="1.0e-2" stroke="#a6cfe3"><rect height="0.10394265232974909" y="0.3960573476702509" width="0.6982758620689655" x="-0.75"/></g><g fill-opacity="0.1" stroke-opacity="1.0" fill="#1f78b5" stroke-width="1.0e-2" stroke="#a6cfe3"><rect height="0.1039426523297492" y="-0.5" width="0.853448275862069" x="-0.10344827586206895"/></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"><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>+<svg height="300.0" width="442.8571428571429" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.775 -0.525 1.55 1.05"><g fill-opacity="1.0" stroke-opacity="1.0" fill="#1f78b5" stroke-width="1.0e-2" stroke="#a6cfe3"><rect height="1.0" y="-0.5" width="1.5" x="-0.75"/></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.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+<svg height="300.0" width="302.02163212349313" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.62 -0.5531609947643978 1.155514898098931 1.1477802665735424"><g fill-opacity="5.0e-2" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.9026900162484203" y="-0.5" width="0.9411498969440864" x="-0.4411498969440863"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4411498969440863,0.40269001624842027+0.5,0.40269001624842027"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4411498969440863,0.252241680207017+0.5,0.252241680207017"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4411498969440863,0.10179334416561353+0.5,0.10179334416561353"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4411498969440863,-4.865499187578981e-2+0.5,-4.865499187578981e-2"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4411498969440863,-0.1991033279171931+0.5,-0.1991033279171931"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4411498969440863,-0.3495516639585964+0.5,-0.3495516639585964"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4411498969440863,-0.5+0.5,-0.5"/></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.41577902148402235" x="-0.5">-1.5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.26533068544261906" x="-0.5">-1</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="0.11488234940121572" x="-0.5">-0.5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-3.556598664018773e-2" x="-0.5">0</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.18601432268159102" x="-0.5">0.5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.3364626587229943" x="-0.5">1</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="5.0e-2"><text y="-0.4869109947643978" x="-0.5">1.5</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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.470796118697825,-0.515"/></g></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="0.9026900162484203" y="-0.5" width="3.7645995877763627e-3" x="-0.45903174498602395"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.4411498969440863,0.40269001624842027+-0.4411498969440863,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.2842915807867386,0.40269001624842027+-0.2842915807867386,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="-0.12743326462939086,0.40269001624842027+-0.12743326462939086,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="2.9425051527956825e-2,0.40269001624842027+2.9425051527956825e-2,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.1862833676853045,0.40269001624842027+0.1862833676853045,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.3431416838426522,0.40269001624842027+0.3431416838426522,-0.5"/></g><g stroke-opacity="5.0e-2" fill="none" stroke-width="5.0e-3" stroke="#0d0d0d"><polyline points="0.5,0.40269001624842027+0.5,-0.5"/></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.179310344827586e-2"><text y="0.5" x="-0.4411498969440863" transform="rotate(-45.0, -0.4411498969440863, 0.5)">-1.5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.179310344827586e-2"><text y="0.5" x="-0.2842915807867386" transform="rotate(-45.0, -0.2842915807867386, 0.5)">-1</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.179310344827586e-2"><text y="0.5" x="-0.12743326462939086" transform="rotate(-45.0, -0.12743326462939086, 0.5)">-0.5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.179310344827586e-2"><text y="0.5" x="2.9425051527956825e-2" transform="rotate(-45.0, 2.9425051527956825e-2, 0.5)">0</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.179310344827586e-2"><text y="0.5" x="0.1862833676853045" transform="rotate(-45.0, 0.1862833676853045, 0.5)">0.5</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.179310344827586e-2"><text y="0.5" x="0.3431416838426522" transform="rotate(-45.0, 0.3431416838426522, 0.5)">1</text></g><g text-anchor="end" fill-opacity="1.0" fill="#0d0d0d" stroke-width="0.0" stroke="none" font-size="4.179310344827586e-2"><text y="0.5" x="0.5" transform="rotate(-45.0, 0.5, 0.5)">1.5</text></g><g fill-opacity="0.4" stroke-opacity="0.4" fill="#0d0d0d" stroke-width="2.0e-3" stroke="#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>+0.5,0.41612475176024555"/></g><g fill-opacity="0.4" stroke-opacity="0.0" fill="#0d0d0d" stroke-width="0.0" stroke="#000000"><rect height="3.6107600649936678e-3" y="0.4162303664921466" width="0.9411498969440864" x="-0.4411498969440863"/></g><g fill-opacity="0.2" stroke-opacity="1.0" fill="#b05929" stroke-width="1.0e-2" stroke="#a6cfe3"><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 fill-opacity="0.2" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="1.0e-2" stroke="#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 fill-opacity="0.2" stroke-opacity="1.0" fill="#1f78b5" stroke-width="1.0e-2" stroke="#a6cfe3"><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 fill-opacity="0.2" stroke-opacity="1.0" fill="#e31a1c" stroke-width="1.0e-2" stroke="#a6cfe3"><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 fill-opacity="0.2" stroke-opacity="1.0" fill="#b2de8a" stroke-width="1.0e-2" stroke="#a6cfe3"><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 fill-opacity="0.2" stroke-opacity="1.0" fill="#33a12b" stroke-width="1.0e-2" stroke="#a6cfe3"><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 fill-opacity="0.2" stroke-opacity="1.0" fill="#fa9999" stroke-width="1.0e-2" stroke="#a6cfe3"><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="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>+<svg height="300.0" width="439.7949673811743" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="-0.7865 -0.5365 1.573 1.073"><g fill-opacity="1.0" stroke-opacity="1.0" fill="#a6cfe3" stroke-width="3.0e-3" stroke="#1f78b5"><rect height="3.0e-2" y="-1.5e-2" width="3.0000000000000027e-2" x="-0.765"/><rect height="3.0e-2" y="-0.11952846326765364" width="3.0000000000000027e-2" x="-0.715"/><rect height="3.0000000000000027e-2" y="-0.21948853110729405" width="3.0000000000000027e-2" x="-0.665"/><rect height="3.0000000000000027e-2" y="-0.3105114688927061" width="3.0000000000000027e-2" x="-0.615"/><rect height="3.0000000000000027e-2" y="-0.3886191374661522" width="3.0000000000000027e-2" x="-0.5650000000000001"/><rect height="3.0000000000000027e-2" y="-0.4503978569087953" width="3.0000000000000027e-2" x="-0.515"/><rect height="3.0000000000000027e-2" y="-0.4931476007338057" width="3.0000000000000027e-2" x="-0.46499999999999997"/><rect height="3.0000000000000027e-2" y="-0.515" width="3.0000000000000027e-2" x="-0.41500000000000004"/><rect height="3.0000000000000027e-2" y="-0.515" width="3.0000000000000027e-2" x="-0.36499999999999994"/><rect height="3.0000000000000027e-2" y="-0.4931476007338059" width="3.0000000000000027e-2" x="-0.3150000000000001"/><rect height="3.0000000000000027e-2" y="-0.4503978569087955" width="3.0000000000000027e-2" x="-0.265"/><rect height="3.0000000000000027e-2" y="-0.3886191374661524" width="3.0000000000000027e-2" x="-0.2150000000000002"/><rect height="3.0000000000000027e-2" y="-0.3105114688927062" width="3.0000000000000027e-2" x="-0.16499999999999992"/><rect height="3.0000000000000027e-2" y="-0.21948853110729416" width="3.0e-2" x="-0.11500000000000009"/><rect height="3.0e-2" y="-0.11952846326765375" width="3.0e-2" x="-6.500000000000004e-2"/><rect height="3.0e-2" y="-1.500000000000011e-2" width="3.0e-2" x="-1.5e-2"/><rect height="3.0e-2" y="8.952846326765325e-2" width="3.0e-2" x="3.5000000000000156e-2"/><rect height="3.0000000000000027e-2" y="0.1894885311072937" width="3.0e-2" x="8.499999999999998e-2"/><rect height="3.0000000000000027e-2" y="0.28051146889270595" width="3.0000000000000027e-2" x="0.1349999999999998"/><rect height="3.0000000000000027e-2" y="0.35861913746615204" width="3.0000000000000027e-2" x="0.18499999999999994"/><rect height="3.0000000000000027e-2" y="0.42039785690879505" width="3.0000000000000027e-2" x="0.235"/><rect height="3.0000000000000027e-2" y="0.46314760073380556" width="3.0000000000000027e-2" x="0.28500000000000003"/><rect height="3.0000000000000027e-2" y="0.4849999999999999" width="3.0000000000000027e-2" x="0.33499999999999963"/><rect height="3.0000000000000027e-2" y="0.485" width="3.0000000000000027e-2" x="0.3849999999999999"/><rect height="3.0000000000000027e-2" y="0.4631476007338056" width="3.0000000000000027e-2" x="0.43500000000000016"/><rect height="3.0000000000000027e-2" y="0.4203978569087954" width="3.0000000000000027e-2" x="0.485"/><rect height="3.0000000000000027e-2" y="0.35861913746615237" width="3.0000000000000027e-2" x="0.5349999999999998"/><rect height="3.0000000000000027e-2" y="0.28051146889270606" width="3.0000000000000027e-2" x="0.5850000000000001"/><rect height="3.0000000000000027e-2" y="0.18948853110729424" width="3.0000000000000027e-2" x="0.6349999999999999"/><rect height="3.0e-2" y="8.95284632676537e-2" width="3.0000000000000027e-2" x="0.6849999999999999"/><rect height="3.0e-2" y="-1.4999999999999888e-2" width="3.0000000000000027e-2" x="0.735"/></g></svg>
src/Chart.hs view
@@ -6,7 +6,7 @@ ( -- * Usage --- -- $setup+ -- $usage -- * Overview @@ -155,14 +155,9 @@ -- $setup ----- >>> import Chart------ chart-svg works well with "NumHask.Prelude" and "Control.Lens" but neither are necessary.--- -- >>> :set -XOverloadedLabels--- >>> :set -XNoImplicitPrelude+-- >>> import Chart -- >>> import Control.Lens--- >>> import NumHask.Prelude -- $overview --@@ -203,7 +198,6 @@ -- > writeChartSvg "other/line.svg" lineExample -- -- --- -- $hud --@@ -222,4 +216,3 @@ -- This process is encapsulated in 'runHud'. -- -- An important quality of 'runHud' (and conversion of charts to svg in general)is that this is the point at which the 'XY's of the chart are converted from the data domain to the page domain. Once the hud and the chart has been integrated there is no going back and the original data is forgotten. This is an opinionated aspect of chart-svg. A counter-example is d3 which stores the raw data in the svg element it represents.---
src/Chart/Bar.hs view
@@ -2,8 +2,8 @@ {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE OverloadedLabels #-} {-# LANGUAGE OverloadedStrings #-}+{-# LANGUAGE RebindableSyntax #-} {-# LANGUAGE TupleSections #-}-{-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -Wall #-} -- | bar charts@@ -15,16 +15,24 @@ barRange, bars, barChart,+ barRects, ) where -import Chart.Types import Chart.Render+import Chart.Types import Control.Lens+import Data.Bifunctor+import Data.Bool import Data.Colour import Data.FormatN import Data.Generics.Labels ()+import Data.List (scanl', transpose) import qualified Data.List.NonEmpty as NonEmpty+import Data.Maybe+import Data.Text (Text, pack)+import GHC.Generics+import GHC.OverloadedLabels import NumHask.Prelude import NumHask.Space @@ -32,10 +40,9 @@ -- -- >>> :set -XOverloadedLabels -- >>> :set -XOverloadedStrings--- >>> :set -XNoImplicitPrelude--- >>> import NumHask.Prelude -- >>> import Chart -- >>> import Control.Lens+-- >>> import Data.Text (pack) -- | Typical bar chart options. --@@ -210,11 +217,11 @@ -- By convention only, the first axis (if any) is the bar axis. barChart :: BarOptions -> BarData -> ChartSvg barChart bo bd =- mempty &- #hudOptions .~ bo ^. #barHudOptions &- #hudOptions . #hudLegend %~ fmap (second (const (barLegend bd bo))) &- #hudOptions . #hudAxes %~ tickFirstAxis bd . flipAllAxes (barOrientation bo) &- #chartList .~ bars bo bd <> bool [] (barTextCharts bo bd) (bo ^. #displayValues)+ mempty+ & #hudOptions .~ bo ^. #barHudOptions+ & #hudOptions . #hudLegend %~ fmap (second (const (barLegend bd bo)))+ & #hudOptions . #hudAxes %~ tickFirstAxis bd . flipAllAxes (barOrientation bo)+ & #chartList .~ bars bo bd <> bool [] (barTextCharts bo bd) (bo ^. #displayValues) flipAllAxes :: Orientation -> [AxisOptions] -> [AxisOptions] flipAllAxes o = fmap (bool id flipAxis (o == Vert))
src/Chart/Examples.hs view
@@ -39,9 +39,15 @@ import Chart import Control.Lens+import Data.Text (Text, pack) import qualified Data.Text as Text+import GHC.OverloadedLabels import NumHask.Prelude hiding (lines) +-- $setup+-- >>> import Chart+-- >>> import Control.Lens+ -- | unit example -- -- @@ -77,8 +83,8 @@ rss :: [[Rect Double]] rss =- [ gridR (\x -> exp (- (x ** 2) / 2)) (Range -5 5) 50,- gridR (\x -> 0.5 * exp (- (x ** 2) / 8)) (Range -5 5) 50+ [ gridR (\x -> exp (-(x ** 2) / 2)) (Range -5 5) 50,+ gridR (\x -> 0.5 * exp (-(x ** 2) / 8)) (Range -5 5) 50 ] ropts :: [RectStyle]@@ -147,8 +153,7 @@ .~ ( [ defaultTitle t1 & #style . #size .~ 0.08 ]- <> maybe- []+ <> foldMap ( \x -> [ defaultTitle x & #style . #size .~ 0.05@@ -326,7 +331,7 @@ labelExample :: ChartSvg labelExample = mempty & #chartList- .~ [Chart (TextA (defaultTextStyle & #rotation ?~ - pi / 4) ["text at (1,1) rotated by -(pi/4) radians"]) [PointXY (Point 1.0 1.0)]]+ .~ [Chart (TextA (defaultTextStyle & #rotation ?~ -pi / 4) ["text at (1,1) rotated by -(pi/4) radians"]) [PointXY (Point 1.0 1.0)]] -- | legend test --@@ -411,7 +416,7 @@ (LineI, Point 1 0), (CubicI (Point 0.2 0) (Point 0.25 1), Point 1 1), (QuadI (Point -1 2), Point 0 1),- (ArcI (ArcInfo (Point 1 1) (- pi / 6) False False), Point 0 0)+ (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) c0 = Chart (GlyphA defaultGlyphStyle) (PointXY . snd <$> ps)@@ -650,4 +655,4 @@ writeChartSvg "other/cubic.svg" cubicExample writeChartSvg "other/arrow.svg" arrowExample - putStrLn ("ok" :: Text)+ putStrLn "ok"
src/Chart/Reanimate.hs view
@@ -1,7 +1,6 @@ {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE OverloadedLabels #-} {-# LANGUAGE OverloadedStrings #-}-{-# LANGUAGE RebindableSyntax #-} {-# OPTIONS_GHC -fno-warn-name-shadowing #-} -- | Integration of reanimate and chart-svg@@ -21,10 +20,13 @@ import Codec.Picture.Types import Control.Lens hiding (transform) import qualified Data.Attoparsec.Text as A+import Data.Maybe+import Data.Text (Text, unpack)+import GHC.Generics import Graphics.SvgTree as Svg hiding (Text) import qualified Graphics.SvgTree.PathParser as Svg import Linear.V2-import NumHask.Prelude hiding (fold)+import NumHask.Prelude (one) import Reanimate as Re -- | global reanimate configuration.@@ -54,11 +56,11 @@ mempty & maybe id- (\x -> fontFamily .~ Last (Just (fmap unpack x)))+ (\x -> fontFamily .~ Just (fmap unpack x)) (view #globalFontFamily cfg) . maybe id- (\x -> fontStyle .~ Last (Just x))+ (\x -> fontStyle .~ Just x) (view #globalFontStyle cfg) -- | The output of the raw translation of ChartSvg to a reanimate svg tree.@@ -104,7 +106,7 @@ withViewBox' :: (Double, Double, Double, Double) -> Svg.PreserveAspectRatio -> Tree -> Tree withViewBox' vbox par child =- Re.translate (- screenWidth / 2) (- screenHeight / 2) $+ Re.translate (-screenWidth / 2) (-screenHeight / 2) $ svgTree Document { _documentViewBox = Just vbox,@@ -145,9 +147,9 @@ $ (drawAttributes %~ translateDA p) defaultSvg where rps =- [ V2 (s * xa) (- s * ya),- V2 (s * xb) (- s * yb),- V2 (s * xc) (- s * yc)+ [ V2 (s * xa) (-s * ya),+ V2 (s * xb) (-s * yb),+ V2 (s * xc) (-s * yc) ] treeShape (EllipseGlyph x') s p = EllipseTree $@@ -159,13 +161,13 @@ treeShape (VLineGlyph x') s (C.Point x y) = LineTree $ Line- (mempty & strokeWidth .~ Last (Just (Num x')))+ (mempty & strokeWidth .~ Just (Num x')) (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')))+ (mempty & strokeWidth .~ Just (Num x')) (pointSvg (C.Point (x - s / 2) y)) (pointSvg (C.Point (x + s / 2) y)) treeShape (PathGlyph path) s p =@@ -187,7 +189,7 @@ treeLine :: [C.Point Double] -> Tree treeLine xs = PolyLineTree- . (polyLinePoints .~ ((\(C.Point x y) -> V2 x (- y)) <$> xs))+ . (polyLinePoints .~ ((\(C.Point x y) -> V2 x (-y)) <$> xs)) $ defaultSvg -- | GlyphStyle to svg Tree@@ -199,7 +201,7 @@ ( zipWith (curry toPathCommand) s- (fmap (\(C.Point x y) -> C.Point x (- y)) p)+ (fmap (\(C.Point x y) -> C.Point x (-y)) p) ) -- | convert a 'Chart' to a 'Tree'@@ -227,21 +229,21 @@ daRect :: RectStyle -> DrawAttributes daRect o = mempty- & (strokeWidth .~ Last (Just $ Num (o ^. #borderSize)))- & (strokeColor .~ Last (Just $ ColorRef (toPixelRGBA8 $ o ^. #borderColor)))+ & (strokeWidth .~ Just (Num (o ^. #borderSize)))+ & (strokeColor .~ Just (ColorRef (toPixelRGBA8 $ o ^. #borderColor))) & (strokeOpacity ?~ realToFrac (opac $ o ^. #borderColor))- & (fillColor .~ Last (Just $ ColorRef (toPixelRGBA8 $ o ^. #color)))+ & (fillColor .~ Just (ColorRef (toPixelRGBA8 $ o ^. #color))) & (fillOpacity ?~ realToFrac (opac $ o ^. #color)) daText :: () => TextStyle -> DrawAttributes daText o = mempty- & (fontSize .~ Last (Just $ Num (o ^. #size)))- & (strokeWidth .~ Last (Just $ Num 0))- & (strokeColor .~ Last (Just FillNone))- & (fillColor .~ Last (Just $ ColorRef (toPixelRGBA8 $ o ^. #color)))+ & (fontSize .~ Just (Num (o ^. #size)))+ & (strokeWidth .~ Just (Num 0))+ & (strokeColor .~ Just FillNone)+ & (fillColor .~ Just (ColorRef (toPixelRGBA8 $ o ^. #color))) & (fillOpacity ?~ realToFrac (opac $ o ^. #color))- & (textAnchor .~ Last (Just (toTextAnchor $ o ^. #anchor)))+ & (textAnchor .~ Just (toTextAnchor $ o ^. #anchor)) where toTextAnchor :: Anchor -> Svg.TextAnchor toTextAnchor AnchorMiddle = TextAnchorMiddle@@ -251,37 +253,37 @@ daGlyph :: GlyphStyle -> DrawAttributes daGlyph o = mempty- & (strokeWidth .~ Last (Just $ Num (o ^. #borderSize)))+ & (strokeWidth .~ Just (Num (o ^. #borderSize))) & ( strokeColor- .~ Last (Just $ ColorRef (toPixelRGBA8 $ o ^. #borderColor))+ .~ Just (ColorRef (toPixelRGBA8 $ o ^. #borderColor)) ) & (strokeOpacity ?~ realToFrac (opac $ o ^. #borderColor))- & (fillColor .~ Last (Just $ ColorRef (toPixelRGBA8 $ o ^. #color)))+ & (fillColor .~ Just (ColorRef (toPixelRGBA8 $ o ^. #color))) & (fillOpacity ?~ realToFrac (opac $ o ^. #color))- & maybe id (\(C.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 = mempty- & (strokeWidth .~ Last (Just $ Num (o ^. #width)))- & (strokeColor .~ Last (Just $ ColorRef (toPixelRGBA8 $ o ^. #color)))+ & (strokeWidth .~ Just (Num (o ^. #width)))+ & (strokeColor .~ Just (ColorRef (toPixelRGBA8 $ o ^. #color))) & (strokeOpacity ?~ realToFrac (opac $ o ^. #color))- & (fillColor .~ Last (Just FillNone))+ & (fillColor .~ Just FillNone) & maybe id- (\x -> strokeLineCap .~ Last (Just $ fromLineCap' x))+ (\x -> strokeLineCap .~ Just (fromLineCap' x)) (o ^. #linecap) & maybe id- (\x -> strokeLineJoin .~ Last (Just $ fromLineJoin' x))+ (\x -> strokeLineJoin .~ Just (fromLineJoin' x)) (o ^. #linejoin) & maybe id- (\x -> strokeOffset .~ Last (Just $ Num x))+ (\x -> strokeOffset .~ Just (Num x)) (o ^. #dashoffset) & maybe id- (\xs -> strokeDashArray .~ Last (Just (Num <$> xs)))+ (\xs -> strokeDashArray .~ Just (Num <$> xs)) (o ^. #dasharray) fromLineCap' :: LineCap -> Svg.Cap@@ -297,13 +299,12 @@ daPath :: PathStyle -> DrawAttributes daPath o = mempty- & (strokeWidth .~ Last (Just $ Num (o ^. #borderSize)))+ & (strokeWidth .~ Just (Num (o ^. #borderSize))) & ( strokeColor- .~ Last- (Just $ ColorRef (toPixelRGBA8 $ o ^. #borderColor))+ .~ Just (ColorRef (toPixelRGBA8 $ o ^. #borderColor)) ) & (strokeOpacity ?~ realToFrac (opac $ o ^. #borderColor))- & (fillColor .~ Last (Just $ ColorRef (toPixelRGBA8 $ o ^. #color)))+ & (fillColor .~ Just (ColorRef (toPixelRGBA8 $ o ^. #color))) & (fillOpacity ?~ realToFrac (opac $ o ^. #color)) -- * svg primitives@@ -320,19 +321,19 @@ -- | convert a point to the svg co-ordinate system -- The svg coordinate system has the y-axis going from top to bottom. pointSvg :: C.Point Double -> (Svg.Number, Svg.Number)-pointSvg (C.Point x y) = (Num x, Num (- y))+pointSvg (C.Point x y) = (Num x, Num (-y)) -- | A DrawAttributes to rotate around a point by x degrees. 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))]+ r = [Rotate (-a * 180 / pi) (Just (x, -y))] -- | A DrawAttributes to translate by a Point. translateDA :: (HasDrawAttributes s) => C.Point Double -> s -> s translateDA (C.Point x' y') = transform- %~ (\x -> Just $ maybe [Translate x' (- y')] (<> [Translate x' (- y')]) x)+ %~ (\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@@ -343,7 +344,7 @@ -- | convert a Rect to the svg co-ordinate system rectSvg :: Rect Double -> Svg.Rectangle -> Svg.Rectangle rectSvg (Rect x z y w) =- (rectUpperLeftCorner .~ (Num x, Num (- w)))+ (rectUpperLeftCorner .~ (Num x, Num (-w))) . (rectWidth .~ Just (Num (z - x))) . (rectHeight .~ Just (Num (w - y)))
src/Chart/Render.hs view
@@ -42,6 +42,7 @@ import Data.Colour import Data.Generics.Labels () import Data.Path+import Data.Text (Text, pack, unpack) import qualified Data.Text as Text import qualified Data.Text.Lazy as Lazy import Lucid@@ -50,6 +51,10 @@ import NumHask.Prelude import NumHask.Space as NH hiding (Element) +-- $setup+-- >>> import Control.Lens+-- >>> import Chart+ -- | Specification of a chart for rendering to SVG data ChartSvg = ChartSvg { svgOptions :: SvgOptions,@@ -85,9 +90,9 @@ <> mconcat (svg <$> cs) ) )- [ width_ (show w'),- height_ (show h'),- makeAttribute "viewBox" (show x <> " " <> show (- w) <> " " <> show (z - x) <> " " <> show (w - y))+ [ width_ (pack $ show w'),+ height_ (pack $ show h'),+ makeAttribute "viewBox" (pack $ show x <> " " <> show (-w) <> " " <> show (z - x) <> " " <> show (w - y)) ] cssText :: CssOptions -> Html ()@@ -145,7 +150,7 @@ (\x -> frameChart x (fromMaybe 0 (so ^. #innerPad))) (so ^. #chartFrame) cs'' =- maybe [] (\c -> [Chart (RectA (blob c)) [RectXY rect']]) (so ^. #background) <> cs'+ foldMap (\c -> [Chart (RectA (blob c)) [RectXY rect']]) (so ^. #background) <> cs' Point w h = NH.width rect' size' = Point ((so ^. #svgHeight) / h * w) (so ^. #svgHeight) penult = case so ^. #chartAspect of@@ -161,7 +166,7 @@ -- | Render a chart using the supplied svg and hud config. -- -- >>> chartSvg mempty--- "<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"300.0\" viewBox=\"-0.52 -0.52 1.04 1.04\" width=\"300.0\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"></svg>"+-- "<svg height=\"300.0\" width=\"300.0\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"-0.52 -0.52 1.04 1.04\"></svg>" chartSvg :: ChartSvg -> Text chartSvg (ChartSvg so ho hs cs) = renderHudChart so (hs <> hs') (cs <> cs') where@@ -188,7 +193,7 @@ -- | Write to a file. writeChartSvg :: FilePath -> ChartSvg -> IO () writeChartSvg fp cs =- writeFile fp (chartSvg cs)+ writeFile fp (unpack $ chartSvg cs) -- | Write a chart to a file with default svg options and no hud. writeChartSvgDefault :: FilePath -> [Chart Double] -> IO ()@@ -209,10 +214,10 @@ svgRect (Rect x z y w) = terms "rect"- [ width_ (show $ z - x),- height_ (show $ w - y),- term "x" (show x),- term "y" (show $ - w)+ [ width_ (pack $ show $ z - x),+ height_ (pack $ show $ w - y),+ term "x" (pack $ show x),+ term "y" (pack $ show $ -w) ] -- | Text svg@@ -220,10 +225,10 @@ svgText s t p@(Point x y) = term "text"- ( [ term "x" (show x),- term "y" (show $ - y)+ ( [ term "x" (pack $ show x),+ term "y" (pack $ show $ -y) ]- <> maybe [] (\x' -> [term "transform" (toRotateText x' p)]) (s ^. #rotation)+ <> foldMap (\x' -> [term "transform" (toRotateText x' p)]) (s ^. #rotation) ) (toHtmlRaw t) @@ -232,16 +237,16 @@ svgLine [] = mempty svgLine xs = terms "polyline" [term "points" (toPointsText xs)] where- toPointsText xs' = Text.intercalate "\n" $ (\(Point x y) -> show x <> "," <> show (- y)) <$> xs'+ toPointsText xs' = Text.intercalate "\n" $ (\(Point x y) -> pack (show x <> "," <> show (-y))) <$> xs' -- | GlyphShape to svg Tree svgShape :: GlyphShape -> Double -> Point Double -> Lucid.Html () svgShape CircleGlyph s (Point x y) = terms "circle"- [ term "cx" (show x),- term "cy" (show $ - y),- term "r" (show $ 0.5 * s)+ [ term "cx" (pack $ show x),+ term "cy" (pack $ show $ -y),+ term "r" (pack $ show $ 0.5 * s) ] svgShape SquareGlyph s p = svgRect (move p ((s *) <$> one))@@ -250,12 +255,12 @@ svgShape (RectRoundedGlyph x' rx ry) s p = terms "rect"- [ term "width" (show $ z - x),- term "height" (show $ w - y),- term "x" (show x),- term "y" (show $ - w),- term "rx" (show rx),- term "ry" (show ry)+ [ term "width" (pack $ show $ z - x),+ term "height" (pack $ show $ w - y),+ term "x" (pack $ show x),+ term "y" (pack $ show $ -w),+ term "rx" (pack $ show rx),+ term "ry" (pack $ show ry) ] where (Rect x z y w) = move p (NH.scale (Point s (x' * s)) one)@@ -263,20 +268,20 @@ terms "polygon" [ term "transform" (toTranslateText p),- term "points" (show (s * xa) <> "," <> show (- (s * ya)) <> " " <> show (s * xb) <> "," <> show (- (s * yb)) <> " " <> show (s * xc) <> "," <> show (- (s * yc)))+ term "points" (pack $ show (s * xa) <> "," <> show (-(s * ya)) <> " " <> show (s * xb) <> "," <> show (-(s * yb)) <> " " <> show (s * xc) <> "," <> show (-(s * yc))) ] svgShape (EllipseGlyph x') s (Point x y) = terms "ellipse"- [ term "cx" (show x),- term "cy" (show $ - y),- term "rx" (show $ 0.5 * s),- term "ry" (show $ 0.5 * s * x')+ [ term "cx" ((pack . show) x),+ term "cy" ((pack . show) $ -y),+ term "rx" ((pack . show) $ 0.5 * s),+ term "ry" ((pack . show) $ 0.5 * s * x') ] svgShape (VLineGlyph _) s (Point x y) =- terms "polyline" [term "points" (show x <> "," <> show (- (y - s / 2)) <> "\n" <> show x <> "," <> show (- (y + s / 2)))]+ terms "polyline" [term "points" (pack $ show x <> "," <> show (-(y - s / 2)) <> "\n" <> show x <> "," <> show (-(y + s / 2)))] svgShape (HLineGlyph _) s (Point x y) =- terms "polyline" [term "points" (show (x - s / 2) <> "," <> show (- y) <> "\n" <> show (x + s / 2) <> "," <> show (- y))]+ terms "polyline" [term "points" (pack $ show (x - s / 2) <> "," <> show (-y) <> "\n" <> show (x + s / 2) <> "," <> show (-y))] svgShape (PathGlyph path) s p = terms "path" [term "d" path, term "transform" (toTranslateText p <> " " <> toScaleText s)] @@ -325,11 +330,11 @@ -- | RectStyle to Attributes attsRect :: RectStyle -> [Lucid.Attribute] attsRect o =- [ term "stroke-width" (show $ o ^. #borderSize),+ [ term "stroke-width" (pack $ show $ o ^. #borderSize), term "stroke" (hex $ o ^. #borderColor),- term "stroke-opacity" (show $ opac $ o ^. #borderColor),+ term "stroke-opacity" (pack $ show $ opac $ o ^. #borderColor), term "fill" (hex $ o ^. #color),- term "fill-opacity" (show $ opac $ o ^. #color)+ term "fill-opacity" (pack $ show $ opac $ o ^. #color) ] -- | TextStyle to Attributes@@ -338,8 +343,8 @@ [ term "stroke-width" "0.0", term "stroke" "none", term "fill" (toHex $ o ^. #color),- term "fill-opacity" (show $ opac $ o ^. #color),- term "font-size" (show $ o ^. #size),+ term "fill-opacity" (pack $ show $ opac $ o ^. #color),+ term "font-size" (pack $ show $ o ^. #size), term "text-anchor" (toTextAnchor $ o ^. #anchor) ] where@@ -351,41 +356,42 @@ -- | GlyphStyle to Attributes attsGlyph :: GlyphStyle -> [Lucid.Attribute] attsGlyph o =- [ term "stroke-width" (show $ o ^. #borderSize),+ [ term "stroke-width" (pack $ show $ o ^. #borderSize), term "stroke" (toHex $ o ^. #borderColor),- term "stroke-opacity" (show $ opac $ o ^. #borderColor),+ term "stroke-opacity" (pack $ show $ opac $ o ^. #borderColor), term "fill" (toHex $ o ^. #color),- term "fill-opacity" (show $ opac $ o ^. #color)+ term "fill-opacity" (pack $ show $ opac $ o ^. #color) ]- <> maybe [] ((: []) . term "transform" . toTranslateText) (o ^. #translate)+ <> foldMap ((: []) . term "transform" . toTranslateText) (o ^. #translate) -- | LineStyle to Attributes attsLine :: LineStyle -> [Lucid.Attribute] attsLine o =- [ term "stroke-width" (show $ o ^. #width),+ [ term "stroke-width" (pack $ show $ o ^. #width), term "stroke" (toHex $ o ^. #color),- term "stroke-opacity" (show $ opac $ o ^. #color),+ term "stroke-opacity" (pack $ show $ opac $ o ^. #color), term "fill" "none" ]- <> maybe [] (\x -> [term "stroke-linecap" (fromLineCap x)]) (o ^. #linecap)- <> maybe [] (\x -> [term "stroke-linejoin" (fromLineJoin x)]) (o ^. #linejoin)- <> maybe [] (\x -> [term "stroke-dasharray" (fromDashArray x)]) (o ^. #dasharray)- <> maybe [] (\x -> [term "stroke-dashoffset" (show x)]) (o ^. #dashoffset)+ <> foldMap (\x -> [term "stroke-linecap" (fromLineCap x)]) (o ^. #linecap)+ <> foldMap (\x -> [term "stroke-linejoin" (fromLineJoin x)]) (o ^. #linejoin)+ <> foldMap (\x -> [term "stroke-dasharray" (fromDashArray x)]) (o ^. #dasharray)+ <> foldMap (\x -> [term "stroke-dashoffset" (pack $ show x)]) (o ^. #dashoffset) -- | PathStyle to Attributes attsPath :: PathStyle -> [Lucid.Attribute] attsPath o =- [ term "stroke-width" (show $ o ^. #borderSize),+ [ term "stroke-width" (pack $ show $ o ^. #borderSize), term "stroke" (hex $ o ^. #borderColor),- term "stroke-opacity" (show $ opac $ o ^. #borderColor),+ term "stroke-opacity" (pack $ show $ opac $ o ^. #borderColor), term "fill" (hex $ o ^. #color),- term "fill-opacity" (show $ opac $ o ^. #color)+ term "fill-opacity" (pack $ show $ opac $ o ^. #color) ] -- | includes a flip of the y dimension. toTranslateText :: Point Double -> Text toTranslateText (Point x y) =- "translate(" <> show x <> ", " <> show (- y) <> ")"+ pack $+ "translate(" <> show x <> ", " <> show (-y) <> ")" -- | includes reference changes: --@@ -396,8 +402,10 @@ -- - flip y dimension toRotateText :: Double -> Point Double -> Text toRotateText r (Point x y) =- "rotate(" <> show (- r * 180 / pi) <> ", " <> show x <> ", " <> show (- y) <> ")"+ pack $+ "rotate(" <> show (-r * 180 / pi) <> ", " <> show x <> ", " <> show (-y) <> ")" toScaleText :: Double -> Text toScaleText x =- "scale(" <> show x <> ")"+ pack $+ "scale(" <> show x <> ")"
src/Chart/Surface.hs view
@@ -1,7 +1,7 @@ {-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE OverloadedLabels #-}-{-# LANGUAGE NoImplicitPrelude #-}+{-# LANGUAGE RebindableSyntax #-} {-# OPTIONS_GHC -Wall #-} -- | Surface chart combinators.@@ -26,9 +26,13 @@ import Chart.Types import Control.Lens+import Data.Bifunctor import Data.Colour import Data.FormatN import Data.Generics.Labels ()+import Data.Text (Text)+import GHC.Generics+import GHC.OverloadedLabels import NumHask.Prelude import NumHask.Space
src/Chart/Types.hs view
@@ -143,24 +143,33 @@ where import Control.Lens+import Control.Monad.State.Lazy+import Data.Bifunctor+import Data.Bool import Data.Colour+import Data.Foldable hiding (sum) import Data.FormatN import Data.Generics.Labels ()+import Data.List.NonEmpty (NonEmpty (..))+import Data.Maybe import Data.Path+import Data.String+import Data.Text (Text, pack) import qualified Data.Text as Text import Data.Time+import GHC.Generics+import GHC.OverloadedLabels import NumHask.Prelude import NumHask.Space as NH hiding (Element) import Text.HTML.TagSoup hiding (Attribute)-import qualified Prelude as P -- $setup -- -- >>> :set -XOverloadedLabels--- >>> :set -XNoImplicitPrelude--- >>> -- import NumHask.Prelude -- >>> import Control.Lens+-- >>> import Chart -- >>> import Chart.Render+-- >>> import Data.Colour -- * Chart @@ -282,6 +291,7 @@ -- >>> defaultTextStyle -- 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} --+-- >>> import qualified Data.Text as Text -- >>> 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]] -- -- @@ -411,7 +421,7 @@ -- | Convert a dash representation from a list to text fromDashArray :: [Double] -> Text-fromDashArray xs = Text.intercalate " " $ show <$> xs+fromDashArray xs = Text.intercalate " " $ pack . show <$> xs -- | line style --@@ -470,8 +480,8 @@ toOrientation _ = Hori -- | additive padding-padRect :: (Num a) => a -> Rect a -> Rect a-padRect p (Rect x z y w) = Rect (x P.- p) (z P.+ p) (y P.- p) (w P.+ p)+padRect :: (Subtractive a) => a -> Rect a -> Rect a+padRect p (Rect x z y w) = Rect (x - p) (z + p) (y - p) (w + p) -- | data CssOptions = UseGeometricPrecision | UseCssCrisp | NoCssOptions deriving (Show, Eq, Generic)@@ -903,7 +913,7 @@ ([axes] <> can <> titles <> l, xsext) where xs' = padBox (Just xs)- can = maybe [] (\x -> [canvas x]) (cfg ^. #hudCanvas)+ can = foldMap (\x -> [canvas x]) (cfg ^. #hudCanvas) titles = title <$> (cfg ^. #hudTitles) ticks = (\a -> freezeTicks (a ^. #place) xs' (a ^. #axisTick . #tstyle))@@ -914,7 +924,7 @@ (cfg ^. #hudAxes) ticks tickRects = catMaybes (snd <$> ticks)- xsext = bool [Chart BlankA (RectXY <$> tickRects)] [] (tickRects == [])+ xsext = bool [Chart BlankA (RectXY <$> tickRects)] [] (null tickRects) axes = foldr simulHud mempty $ ( \x ->@@ -923,8 +933,7 @@ ) <$> hudaxes l =- maybe- []+ foldMap (\(lo, ats) -> [legendHud lo (legendChart ats lo)]) (cfg ^. #hudLegend) @@ -1036,7 +1045,7 @@ | otherwise = t ^. #style rot | t ^. #place == PlaceRight = pi / 2- | t ^. #place == PlaceLeft = - pi / 2+ | t ^. #place == PlaceLeft = -pi / 2 | otherwise = 0 placePos' (Rect x z y w) = case t ^. #place of PlaceTop -> Point ((x + z) / 2.0) (w + (t ^. #buff))@@ -1063,10 +1072,10 @@ Point 0.0 ((w - y) / 2.0) | t ^. #anchor == AnchorEnd && t ^. #place `elem` [PlaceTop, PlaceBottom] =- Point ((- x + z) / 2.0) 0.0+ Point ((-x + z) / 2.0) 0.0 | t ^. #anchor == AnchorEnd && t ^. #place == PlaceLeft =- Point 0.0 ((- y + w) / 2.0)+ Point 0.0 ((-y + w) / 2.0) | t ^. #anchor == AnchorEnd && t ^. #place == PlaceRight = Point 0.0 ((y - w) / 2.0)@@ -1097,10 +1106,10 @@ textPos :: Place -> TextStyle -> Double -> Point Double textPos pl tt b = case pl of PlaceTop -> Point 0 b- PlaceBottom -> Point 0 (- b - 0.5 * (tt ^. #vsize) * (tt ^. #size))+ PlaceBottom -> Point 0 (-b - 0.5 * (tt ^. #vsize) * (tt ^. #size)) PlaceLeft -> Point- (- b)+ (-b) ((tt ^. #nudge1) * (tt ^. #vsize) * (tt ^. #size)) PlaceRight -> Point@@ -1575,7 +1584,7 @@ Rect Double 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')+ flat = Rect ((-x' / 2.0) + x' * a') (x' / 2 + x' * a') ((-y' / 2) - n1') (y' / 2 - n1') s = o ^. #size h = o ^. #hsize v = o ^. #vsize@@ -1626,6 +1635,7 @@ -- | additively pad a [Chart] --+-- >>> import NumHask.Prelude (one) -- >>> padChart 0.1 [Chart (RectA defaultRectStyle) [RectXY one]] -- [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]
src/Chart/Various.hs view
@@ -1,6 +1,5 @@ {-# LANGUAGE OverloadedLabels #-} {-# LANGUAGE OverloadedStrings #-}-{-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-name-shadowing #-} -- | Various common chart patterns.@@ -34,9 +33,13 @@ import Chart import Control.Lens+import Data.Bifunctor+import Data.Foldable import qualified Data.HashMap.Strict as HashMap+import Data.Maybe+import Data.Text (Text) import Data.Time (UTCTime (..))-import NumHask.Prelude hiding (fold)+import NumHask.Prelude (one) import NumHask.Space -- | convert from [a] to [Point a], by adding the index as the x axis
src/Data/Colour.hs view
@@ -38,13 +38,16 @@ where import qualified Data.Attoparsec.Text as A+import Data.Bifunctor+import Data.Char+import Data.Either import Data.FormatN import Data.Generics.Labels () import qualified Data.List as List+import Data.Text (Text, pack) import qualified Data.Text as Text+import GHC.Generics hiding (prec) import Graphics.Color.Model-import NumHask.Prelude as NHP-import qualified Prelude as P -- | Wrapper for 'Color'. newtype Colour = Colour'@@ -104,7 +107,7 @@ blends :: Double -> [Colour] -> Colour blends _ [] = light blends _ [c] = c-blends x cs = blend r (cs P.!! i) (cs P.!! (i + 1))+blends x cs = blend r (cs List.!! i) (cs List.!! (i + 1)) where l = length cs - 1 x' = x * fromIntegral l@@ -128,7 +131,7 @@ -- | unsafeFromHex :: Text -> Color RGB Double-unsafeFromHex t = either (const (ColorRGB 0 0 0)) id $ A.parseOnly parseHex t+unsafeFromHex t = fromRight (ColorRGB 0 0 0) $ A.parseOnly parseHex t -- | convert from 'Colour' to #xxxxxx toHex :: Colour -> Text@@ -138,12 +141,12 @@ <> Text.justifyRight 2 '0' (hex' g) <> Text.justifyRight 2 '0' (hex' b) where- (ColorRGBA r g b _) = toIntegral . toWord8 <$> color' c+ (ColorRGBA r g b _) = fromIntegral . toWord8 <$> color' c -- | hex' :: Int -> Text hex' i- | i < 0 = "-" <> go (- i)+ | i < 0 = "-" <> go (-i) | otherwise = go i where go n@@ -153,8 +156,8 @@ -- | hexDigit :: Int -> Text hexDigit n- | n <= 9 = Text.singleton P.$! i2d n- | otherwise = Text.singleton P.$! toEnum (n + 87)+ | n <= 9 = Text.singleton $! i2d n+ | otherwise = Text.singleton $! toEnum (n + 87) -- | i2d :: Int -> Char
src/Data/FormatN.hs view
@@ -8,7 +8,6 @@ {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RankNTypes #-}-{-# LANGUAGE RebindableSyntax #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# OPTIONS_GHC -Wall #-}@@ -28,23 +27,28 @@ comma, expt, dollar,+ percent, formatN, precision, formatNs, showOr,+ roundSig, ) where +import Data.Bifunctor+import Data.Bool import Data.Containers.ListUtils (nubOrd)+import Data.Foldable import Data.Generics.Labels () import Data.Scientific+import Data.String+import Data.Text (Text, pack) import qualified Data.Text as Text-import NumHask.Prelude+import GHC.Generics hiding (prec)+import Prelude -- $setup------ >>> :set -XNoImplicitPrelude--- >>> -- import NumHask.Prelude -- | Number formatting options. --@@ -139,7 +143,7 @@ -- "1.2e6" prec :: Maybe Int -> Double -> Text prec n x- | x < 0 = "-" <> prec n (- x)+ | x < 0 = "-" <> prec n (-x) | x == 0 = decimal n (toRealFloat x') | x < 0.001 = expt n x | x > 1e6 = expt n x@@ -168,10 +172,10 @@ -- "1,230" comma :: Maybe Int -> Double -> Text comma n x- | x < 0 = "-" <> comma n (- x)+ | x < 0 = "-" <> comma n (-x) | x < 1000 || x > 1e6 = prec n x | otherwise = case n of- Nothing -> addcomma (show x)+ Nothing -> addcomma (pack $ show x) Just _ -> addcomma (prec n x) where addcomma :: Text -> Text@@ -186,7 +190,7 @@ -- "$0.0123" dollar :: Maybe Int -> Double -> Text dollar n x- | x < 0 = "-" <> dollar n (- x)+ | x < 0 = "-" <> dollar n (-x) | otherwise = "$" <> comma n x -- | fixed percent, always decimal notation@@ -232,7 +236,7 @@ -- | Format with the shorter of show and formatN. showOr :: FormatN -> Double -> Text-showOr f x = bool (bool f' s' (Text.length s' < Text.length f')) "0" (x < 1e-6 && x > -1e-6)+showOr f x = bool (bool f' (pack s') (Text.length (pack s') < Text.length f')) "0" (x < 1e-6 && x > -1e-6) where f' = formatN f x s' = show x
src/Data/Path.hs view
@@ -54,22 +54,29 @@ import qualified Control.Foldl as L import Control.Lens hiding ((...)) import qualified Data.Attoparsec.Text as A+import Data.Bifunctor+import Data.Either import Data.FormatN import Data.Generics.Labels ()+import Data.Text (Text, pack) import qualified Data.Text as Text+import GHC.Generics+import GHC.OverloadedLabels import qualified Geom2D.CubicBezier as B import Graphics.SvgTree (Origin (..), PathCommand (..)) import qualified Graphics.SvgTree as SvgTree import Graphics.SvgTree.PathParser import qualified Linear-import NumHask.Prelude hiding (rotate)+import NumHask.Prelude import NumHask.Space -- $setup--- >>> :set -XRebindableSyntax+-- FIXME:+-- :set -XRebindableSyntax gets timed out by cabal-docspec here, but NoImplicitPrelude works.+-- >>> :set -XNoImplicitPrelude -- >>> :set -XNegativeLiterals--- >>> import NumHask.Prelude -- >>> import Chart+-- >>> import NumHask.Prelude -- $path -- Every element of an svg path can be thought of as exactly two points in space, with instructions of how to draw a curve between them. From this point of view, one which this library adopts, a path chart is thus very similar to a line chart. There's just a lot more information about the style of this line to deal with.@@ -88,7 +95,7 @@ -- -- https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/d parsePath :: Text -> [PathCommand]-parsePath t = either (const []) id $ A.parseOnly pathParser t+parsePath t = fromRight [] $ A.parseOnly pathParser t -- | To fit in with the requirements of the library design, specifically the separation of what a chart is into XY data Points from representation of these points, path instructions need to be decontructed into: --@@ -149,11 +156,11 @@ <> pp next toPathAbsolute (ArcI (ArcInfo (Point x y) phi' l sw), x2) = "A "- <> show x+ <> (pack . show) x <> " "- <> show y+ <> (pack . show) y <> " "- <> show (- phi' * 180 / pi)+ <> (pack . show) (-phi' * 180 / pi) <> " " <> bool "0" "1" l <> " "@@ -165,7 +172,7 @@ pp :: Point Double -> Text pp (Point x y) = showOr (FormatFixed (Just 4)) x <> ","- <> showOr (FormatFixed (Just 4)) (bool (- y) y (y == zero))+ <> showOr (FormatFixed (Just 4)) (bool (-y) y (y == zero)) -- | convert an (info, point) list to an svg d path text. toPathAbsolutes :: [(PathInfo Double, Point Double)] -> Text@@ -323,7 +330,7 @@ fromPathEllipticalArc _ (x, y, r, l, s, _) = ArcI (ArcInfo (Point x y) r l s) fromV2 :: (Subtractive a) => Linear.V2 a -> Point a-fromV2 (Linear.V2 x y) = Point x (- y)+fromV2 (Linear.V2 x y) = Point x (-y) -- | Convert from a path command list to a PathA specification toPathXYs :: [SvgTree.PathCommand] -> [(PathInfo Double, Point Double)]@@ -408,7 +415,7 @@ arcCentroid :: (FromInteger a, Ord a, TrigField a, ExpField a) => ArcPosition a -> ArcCentroid a arcCentroid (ArcPosition p1@(Point x1 y1) p2@(Point x2 y2) (ArcInfo rad phi large clockwise)) = ArcCentroid c (Point rx ry) phi ang1 angd where- (Point x1' y1') = rotateP (- phi) ((p1 - p2) /. two)+ (Point x1' y1') = rotateP (-phi) ((p1 - p2) /. two) (Point rx' ry') = rad l = x1' ** 2 / rx' ** 2 + y1' ** 2 / ry' ** 2 (rx, ry) = bool (rx', ry') (rx' * sqrt l, ry' * sqrt l) (l > 1)@@ -418,12 +425,12 @@ * sqrt (snumer / (rx * rx * y1' * y1' + ry * ry * x1' * x1')) cx' = s * rx * y1' / ry- cy' = s * (- ry) * x1' / rx+ cy' = s * (-ry) * x1' / rx cx = (x1 + x2) / 2 + cos phi * cx' - sin phi * cy' cy = (y1 + y2) / 2 + sin phi * cx' + cos phi * cy' c = Point cx cy- ang1 = angle (Point (- (cx' - x1') / rx) (- (cy' - y1') / ry))- ang2 = angle (Point (- (cx' + x1') / rx) (- (cy' + y1') / ry))+ ang1 = angle (Point (-(cx' - x1') / rx) (-(cy' - y1') / ry))+ ang2 = angle (Point (-(cx' + x1') / rx) (-(cy' + y1') / ry)) angd' = ang2 - ang1 angd = bool 0 (2 * pi) (not clockwise && angd' < 0)@@ -500,7 +507,7 @@ arcDerivs :: Point Double -> Double -> (Double, Double) arcDerivs (Point rx ry) phi = (thetax1, thetay1) where- thetax1 = atan2 (- sin phi * ry) (cos phi * rx)+ thetax1 = atan2 (-sin phi * ry) (cos phi * rx) thetay1 = atan2 (cos phi * ry) (sin phi * rx) -- * bezier@@ -531,7 +538,7 @@ -- -- >>> quadPolar (QuadPosition (Point 0 0) (Point 1 1) (Point 2 -1)) -- QuadPolar {qpolStart = Point 0.0 0.0, qpolEnd = Point 1.0 1.0, qpolControl = Polar {magnitude = 2.1213203435596424, direction = -0.7853981633974483}}-quadPolar :: (ExpField a, TrigField a) => QuadPosition a -> QuadPolar a+quadPolar :: (Eq a, ExpField a, TrigField a) => QuadPosition a -> QuadPolar a quadPolar (QuadPosition start end control) = QuadPolar start end control' where mp = (start + end) /. two@@ -615,7 +622,7 @@ -- -- >>> cubicPolar (CubicPosition (Point 0 0) (Point 1 1) (Point 1 -1) (Point 0 2)) -- CubicPolar {cpolStart = Point 0.0 0.0, cpolEnd = Point 1.0 1.0, cpolControl1 = Polar {magnitude = 1.1180339887498947, direction = -1.2490457723982544}, cpolControl2 = Polar {magnitude = 1.1180339887498947, direction = 1.8925468811915387}}-cubicPolar :: (ExpField a, TrigField a) => CubicPosition a -> CubicPolar a+cubicPolar :: (Eq a, ExpField a, TrigField a) => CubicPosition a -> CubicPolar a cubicPolar (CubicPosition start end control1 control2) = CubicPolar start end control1' control2' where mp = (start + end) /. two@@ -629,7 +636,7 @@ -- -- >>> cubicPosition $ cubicPolar (CubicPosition (Point 0 0) (Point 1 1) (Point 1 -1) (Point 0 2)) -- CubicPosition {cposStart = Point 0.0 0.0, cposEnd = Point 1.0 1.0, cposControl1 = Point 1.0 -1.0, cposControl2 = Point 1.6653345369377348e-16 2.0}-cubicPosition :: (ExpField a, TrigField a) => CubicPolar a -> CubicPosition a+cubicPosition :: (Eq a, ExpField a, TrigField a) => CubicPolar a -> CubicPosition a cubicPosition (CubicPolar start end control1 control2) = CubicPosition start end control1' control2' where control1' = norm (end - start) .* coord control1 + (start + end) /. two
− test/test.hs
@@ -1,21 +0,0 @@-{-# LANGUAGE NoImplicitPrelude #-}-{-# OPTIONS_GHC -Wall #-}--module Main where--import NumHask.Prelude-import Test.DocTest--main :: IO ()-main = doctest- [ "src/Chart.hs",- "src/Data/FormatN.hs",- "src/Data/Path.hs",- "src/Chart/Types.hs",- "src/Chart/Bar.hs",- "src/Chart/Render.hs",- "src/Chart/Surface.hs",- "src/Chart/Examples.hs",- "src/Data/Colour.hs",- "src/Chart/Reanimate.hs"- ]