diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,3 +1,7 @@
+0.5.0
+===
+* Library split into markup-parse and chart-svg.
+
 0.4.1
 ===
 * Changes due to numhask-0.11 upgrade
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright Tony Day (c) 2018
+Copyright (c) 2017, Tony Day
 
 All rights reserved.
 
diff --git a/chart-svg.cabal b/chart-svg.cabal
--- a/chart-svg.cabal
+++ b/chart-svg.cabal
@@ -1,164 +1,163 @@
-cabal-version:   3.0
-name:            chart-svg
-version:         0.4.1.1
-synopsis:        Charting library targetting SVGs.
+cabal-version: 3.0
+name: chart-svg
+version: 0.5.0.0
+license: BSD-3-Clause
+license-file: LICENSE
+copyright: Tony Day (c) 2017
+category: graphics
+author: Tony Day
+maintainer: tonyday567@gmail.com
+homepage: https://github.com/tonyday567/chart-svg#readme
+bug-reports: https://github.com/tonyday567/chart-svg/issues
+synopsis: Charting library targetting SVGs.
 description:
-  This package provides a charting library targetting SVG as the rendered output.
+    This package provides a charting library targetting SVG as the rendered output.
 
-  == Usage
+    == Usage
 
-  >>> :set -XOverloadedLabels
-  >>> :set -XOverloadedStrings
-  >>> import Chart
-  >>> import Optics.Core
-  >>> let lines = [[Point 0.0 1.0, Point 1.0 1.0, Point 2.0 5.0],[Point 0.0 0.0, Point 2.8 3.0],[Point 0.5 4.0, Point 0.5 0]]
-  >>> let styles = (\c -> defaultLineStyle & #color .~ palette1 c & #size .~ 0.015) <$> [0..2]
-  >>> let cs = zipWith (\s x -> LineChart s [x]) styles lines
-  >>> let lineExample = mempty & #charts .~ named "line" cs & #hudOptions .~ defaultHudOptions :: ChartOptions
-  >>> writeChartOptions "other/usage.svg" lineExample
+    >>> :set -XOverloadedLabels
+    >>> :set -XOverloadedStrings
+    >>> import Chart
+    >>> import Optics.Core
+    >>> let lines = [[Point 0.0 1.0, Point 1.0 1.0, Point 2.0 5.0],[Point 0.0 0.0, Point 2.8 3.0],[Point 0.5 4.0, Point 0.5 0]]
+    >>> let styles = (\c -> defaultLineStyle & #color .~ palette1 c & #size .~ 0.015) <$> [0..2]
+    >>> let cs = zipWith (\s x -> LineChart s [x]) styles lines
+    >>> let lineExample = mempty & #charts .~ named "line" cs & #hudOptions .~ defaultHudOptions :: ChartOptions
+    >>> writeChartOptions "other/usage.svg" lineExample
 
-  ![usage example](docs/other/usage.svg)
+    ![usage example](docs/other/usage.svg)
 
-  See "Chart" for a broad overview of concepts, and "Chart.Examples" for practical examples.
+    See "Chart" for a broad overview of concepts, and "Chart.Examples" for 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
-                 ChangeLog.md
-                 readme.org
-tested-with:     GHC == 8.10.7 || ==9.2.8 || ==9.4.5 || ==9.6.2
+build-type: Simple
+tested-with: GHC == 8.10.7 || ==9.2.8 || ==9.4.5 || ==9.6.2
+extra-doc-files:
+    ChangeLog.md
+    other/*.svg
+    readme.org
 
 source-repository head
-  type:     git
-  location: https://github.com/tonyday567/chart-svg
+    type: git
+    location: https://github.com/tonyday567/chart-svg
 
+common ghc-options-stanza
+    ghc-options:
+        -Wall
+        -Wcompat
+        -Widentities
+        -Wincomplete-record-updates
+        -Wincomplete-uni-patterns
+        -Wpartial-fields
+        -Wredundant-constraints
+
 common ghc2021-stanza
-  if impl(ghc >=9.2)
-    default-language:
-      GHC2021
-  if impl(ghc <9.2)
-    default-language:
-      Haskell2010
-    default-extensions:
-      BangPatterns
-      BinaryLiterals
-      ConstrainedClassMethods
-      ConstraintKinds
-      DeriveDataTypeable
-      DeriveFoldable
-      DeriveFunctor
-      DeriveGeneric
-      DeriveLift
-      DeriveTraversable
-      DoAndIfThenElse
-      EmptyCase
-      EmptyDataDecls
-      EmptyDataDeriving
-      ExistentialQuantification
-      ExplicitForAll
-      FlexibleContexts
-      FlexibleInstances
-      ForeignFunctionInterface
-      GADTSyntax
-      GeneralisedNewtypeDeriving
-      HexFloatLiterals
-      ImplicitPrelude
-      InstanceSigs
-      KindSignatures
-      MonomorphismRestriction
-      MultiParamTypeClasses
-      NamedFieldPuns
-      NamedWildCards
-      NumericUnderscores
-      PatternGuards
-      PolyKinds
-      PostfixOperators
-      RankNTypes
-      RelaxedPolyRec
-      ScopedTypeVariables
-      StandaloneDeriving
-      StarIsType
-      TraditionalRecordSyntax
-      TupleSections
-      TypeApplications
-      TypeOperators
-      TypeSynonymInstances
-  if impl(ghc <9.2) && impl(ghc >=8.10)
-    default-extensions:
-      ImportQualifiedPost
-      StandaloneKindSignatures
+    if impl ( ghc >= 9.2 )
+        default-language: GHC2021
 
-common ghc-options-stanza
-  ghc-options:
-    -Wall
-    -Wcompat
-    -Wincomplete-record-updates
-    -Wincomplete-uni-patterns
-    -Wredundant-constraints
-    -Widentities
-    -Wpartial-fields
+    if impl ( ghc < 9.2 )
+        default-language: Haskell2010
+        default-extensions:
+            BangPatterns
+            BinaryLiterals
+            ConstrainedClassMethods
+            ConstraintKinds
+            DeriveDataTypeable
+            DeriveFoldable
+            DeriveFunctor
+            DeriveGeneric
+            DeriveLift
+            DeriveTraversable
+            DoAndIfThenElse
+            EmptyCase
+            EmptyDataDecls
+            EmptyDataDeriving
+            ExistentialQuantification
+            ExplicitForAll
+            FlexibleContexts
+            FlexibleInstances
+            ForeignFunctionInterface
+            GADTSyntax
+            GeneralisedNewtypeDeriving
+            HexFloatLiterals
+            ImplicitPrelude
+            InstanceSigs
+            KindSignatures
+            MonomorphismRestriction
+            MultiParamTypeClasses
+            NamedFieldPuns
+            NamedWildCards
+            NumericUnderscores
+            PatternGuards
+            PolyKinds
+            PostfixOperators
+            RankNTypes
+            RelaxedPolyRec
+            ScopedTypeVariables
+            StandaloneDeriving
+            StarIsType
+            TraditionalRecordSyntax
+            TupleSections
+            TypeApplications
+            TypeOperators
+            TypeSynonymInstances
 
-library
-  import: ghc2021-stanza
-  import: ghc-options-stanza
-  exposed-modules:
-    Chart
-    Chart.Bar
-    Chart.Data
-    Chart.Examples
-    Chart.FlatParse
-    Chart.Hud
-    Chart.Markup
-    Chart.Markup.Parser
-    Chart.Primitive
-    Chart.Style
-    Chart.Surface
-    Data.Colour
-    Data.Path
-    Data.Path.Parser
+    if impl ( ghc < 9.2 ) && impl ( ghc >= 8.10 )
+        default-extensions:
+            ImportQualifiedPost
+            StandaloneKindSignatures
 
-  hs-source-dirs:     src
-  build-depends:
-    Color ^>=0.3,
-    adjunctions ^>=4.4,
-    attoparsec >=0.13.2 && <0.15,
-    base >=4.7 && <5,
-    bytestring >=0.11.3 && <0.13,
-    containers ^>=0.6,
-    cubicbezier ^>=0.6,
-    flatparse >=0.4 && <0.6,
-    foldl ^>=1.4,
-    formatn >=0.3 && < 0.4,
-    mtl >=2.2.2 && <2.4,
-    numhask ^>=0.11,
-    numhask-array ^>=0.11,
-    numhask-space ^>=0.11,
-    optics-core ^>=0.4,
-    random ^>=1.2.1,
-    string-interpolate ^>=0.3,
-    text >=1.2 && <2.1,
-    time >=1.9 && <2,
-    tree-diff >=0.3 && <0.4,
+library
+    import: ghc-options-stanza
+    import: ghc2021-stanza
+    hs-source-dirs: src
+    build-depends:
+        , Color              ^>=0.3
+        , adjunctions        >=4.0 && <5
+        , attoparsec         >=0.13.2 && <0.15
+        , base               >=4.7 && <5
+        , bytestring         >=0.11.3 && <0.13
+        , containers         >=0.6 && <0.7
+        , cubicbezier        ^>=0.6
+        , flatparse          >=0.3.5 && <0.6
+        , foldl              ^>=1.4
+        , formatn            >=0.2.1 && <0.4
+        , markup-parse       >=0.0 && <0.1
+        , mtl                >=2.2.2 && <2.4
+        , numhask            >=0.10 && <0.12
+        , numhask-array      >=0.10 && <0.12
+        , numhask-space      >=0.10 && <0.12
+        , optics-core        >=0.4 && <0.5
+        , random             >=1.2 && <1.3
+        , string-interpolate >=0.3 && <0.4
+        , text               >=1.2 && <2.1
+        , time               >=1.9 && <1.13
+        , tree-diff          >=0.3 && <0.4
+    exposed-modules:
+        Chart
+        Chart.Bar
+        Chart.Data
+        Chart.Examples
+        Chart.Hud
+        Chart.Markup
+        Chart.Primitive
+        Chart.Style
+        Chart.Surface
+        Data.Colour
+        Data.Path
+        Data.Path.Parser
 
 test-suite test
-  import: ghc2021-stanza
-  import: ghc-options-stanza
-  type: exitcode-stdio-1.0
-  main-is: test.hs
-  hs-source-dirs:
-    test
-  build-depends:
-    base >=4.7 && <5,
-    bytestring >=0.11.3 && <0.13,
-    chart-svg,
-    flatparse >=0.4 && <0.6,
-    tasty >=1.2 && <1.5,
-    tasty-golden ^>=2.3.1.1,
-    tree-diff >=0.3 && <0.4,
+    import: ghc-options-stanza
+    import: ghc2021-stanza
+    main-is: test.hs
+    hs-source-dirs: test
+    build-depends:
+        , base         >=4.7 && <5
+        , bytestring   >=0.11.3 && <0.13
+        , chart-svg
+        , flatparse    >=0.3.5 && <0.6
+        , markup-parse >=0.0 && <0.1
+        , tasty        >=1.2 && <1.5
+        , tasty-golden >=2.3.1.1 && <2.4
+        , tree-diff    >=0.3 && <0.4
+    type: exitcode-stdio-1.0
diff --git a/other/arcflags.svg b/other/arcflags.svg
--- a/other/arcflags.svg
+++ b/other/arcflags.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="0 -4.8549 9.0 8.5323" width="316" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="316" height="300" viewBox="0 -4.8549 9.0 8.5323"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -39,4 +39,4 @@
     fill: rgba(94%, 94%, 94%, 1.00);
   }
 }
-</style><g class="chart"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.6" stroke="none" stroke-width="0.0" text-anchor="middle"><text transform="rotate(-90.0, 0.5, 0)" x="0.5" y="0">Sweep</text></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.4" stroke="none" stroke-width="0.0" text-anchor="middle"><text transform="rotate(-90.0, 1.5700, 1.5100)" x="1.5700" y="1.5100">True</text></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.4" stroke="none" stroke-width="0.0" text-anchor="middle"><text transform="rotate(-90.0, 1.5700, -1.5100)" x="1.5700" y="-1.5100">False</text></g><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.2" stroke-width="0.0200"><polyline points="5.1500,1.6600 5.1480,1.5972 5.1421,1.5347 5.1323,1.4726 5.1186,1.4113 5.1011,1.3510 5.0798,1.2919 5.0548,1.2342 5.0263,1.1782 4.9943,1.1242 4.9590,1.0722 4.9205,1.0226 4.8790,0.9755 4.8345,0.9310 4.7874,0.8895 4.7378,0.8510 4.6858,0.8157 4.6318,0.7837 4.5758,0.7552 4.5181,0.7302 4.4590,0.7089 4.3987,0.6914 4.3374,0.6777 4.2753,0.6679 4.2128,0.6620 4.15,0.6600 4.0872,0.6620 4.0247,0.6679 3.9626,0.6777 3.9013,0.6914 3.8410,0.7089 3.7819,0.7302 3.7242,0.7552 3.6682,0.7837 3.6142,0.8157 3.5622,0.8510 3.5126,0.8895 3.4655,0.9310 3.4210,0.9755 3.3795,1.0226 3.3410,1.0722 3.3057,1.1242 3.2737,1.1782 3.2452,1.2342 3.2202,1.2919 3.1989,1.3510 3.1814,1.4113 3.1677,1.4726 3.1579,1.5347 3.1520,1.5972 3.15,1.6600 3.1520,1.7228 3.1579,1.7853 3.1677,1.8474 3.1814,1.9087 3.1989,1.9690 3.2202,2.0281 3.2452,2.0858 3.2737,2.1418 3.3057,2.1958 3.3410,2.2478 3.3795,2.2974 3.4210,2.3445 3.4655,2.3890 3.5126,2.4305 3.5622,2.4690 3.6142,2.5043 3.6682,2.5363 3.7242,2.5648 3.7819,2.5898 3.8410,2.6111 3.9013,2.6286 3.9626,2.6423 4.0247,2.6521 4.0872,2.6580 4.15,2.6600 4.2128,2.6580 4.2753,2.6521 4.3374,2.6423 4.3987,2.6286 4.4590,2.6111 4.5181,2.5898 4.5758,2.5648 4.6318,2.5363 4.6858,2.5043 4.7378,2.4690 4.7874,2.4305 4.8345,2.3890 4.8790,2.3445 4.9205,2.2974 4.9590,2.2478 4.9943,2.1958 5.0263,2.1418 5.0548,2.0858 5.0798,2.0281 5.1011,1.9690 5.1186,1.9087 5.1323,1.8474 5.1421,1.7853 5.1480,1.7228 5.1500,1.6600"/></g><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.2" stroke-width="0.0200"><polyline points="4.15,2.6600 4.1480,2.5972 4.1421,2.5347 4.1323,2.4726 4.1186,2.4113 4.1011,2.3510 4.0798,2.2919 4.0548,2.2342 4.0263,2.1782 3.9943,2.1242 3.9590,2.0722 3.9205,2.0226 3.8790,1.9755 3.8345,1.9310 3.7874,1.8895 3.7378,1.8510 3.6858,1.8157 3.6318,1.7837 3.5758,1.7552 3.5181,1.7302 3.4590,1.7089 3.3987,1.6914 3.3374,1.6777 3.2753,1.6679 3.2128,1.6620 3.15,1.6600 3.0872,1.6620 3.0247,1.6679 2.9626,1.6777 2.9013,1.6914 2.8410,1.7089 2.7819,1.7302 2.7242,1.7552 2.6682,1.7837 2.6142,1.8157 2.5622,1.8510 2.5126,1.8895 2.4655,1.9310 2.4210,1.9755 2.3795,2.0226 2.3410,2.0722 2.3057,2.1242 2.2737,2.1782 2.2452,2.2342 2.2202,2.2919 2.1989,2.3510 2.1814,2.4113 2.1677,2.4726 2.1579,2.5347 2.1520,2.5972 2.1500,2.6600 2.1520,2.7228 2.1579,2.7853 2.1677,2.8474 2.1814,2.9087 2.1989,2.9690 2.2202,3.0281 2.2452,3.0858 2.2737,3.1418 2.3057,3.1958 2.3410,3.2478 2.3795,3.2974 2.4210,3.3445 2.4655,3.3890 2.5126,3.4305 2.5622,3.4690 2.6142,3.5043 2.6682,3.5363 2.7242,3.5648 2.7819,3.5898 2.8410,3.6111 2.9013,3.6286 2.9626,3.6423 3.0247,3.6521 3.0872,3.6580 3.15,3.6600 3.2128,3.6580 3.2753,3.6521 3.3374,3.6423 3.3987,3.6286 3.4590,3.6111 3.5181,3.5898 3.5758,3.5648 3.6318,3.5363 3.6858,3.5043 3.7378,3.4690 3.7874,3.4305 3.8345,3.3890 3.8790,3.3445 3.9205,3.2974 3.9590,3.2478 3.9943,3.1958 4.0263,3.1418 4.0548,3.0858 4.0798,3.0281 4.1011,2.9690 4.1186,2.9087 4.1323,2.8474 4.1421,2.7853 4.1480,2.7228 4.15,2.6600"/></g><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.5" stroke-width="0.0500"><polyline points="3.15,1.6600 3.1657,1.6601 3.1814,1.6605 3.1971,1.6611 3.2128,1.6620 3.2285,1.6631 3.2441,1.6644 3.2597,1.6660 3.2753,1.6679 3.2909,1.6700 3.3064,1.6723 3.3219,1.6749 3.3374,1.6777 3.3528,1.6808 3.3681,1.6841 3.3834,1.6876 3.3987,1.6914 3.4139,1.6954 3.4290,1.6997 3.4440,1.7042 3.4590,1.7089 3.4739,1.7139 3.4887,1.7191 3.5035,1.7246 3.5181,1.7302 3.5327,1.7361 3.5471,1.7422 3.5615,1.7486 3.5758,1.7552 3.5899,1.7620 3.6040,1.7690 3.6179,1.7762 3.6318,1.7837 3.6455,1.7914 3.6590,1.7993 3.6725,1.8074 3.6858,1.8157 3.6990,1.8242 3.7121,1.8329 3.7250,1.8419 3.7378,1.8510 3.7504,1.8603 3.7629,1.8698 3.7752,1.8796 3.7874,1.8895 3.7994,1.8996 3.8113,1.9099 3.8230,1.9204 3.8345,1.9310 3.8459,1.9419 3.8571,1.9529 3.8681,1.9641 3.8790,1.9755 3.8896,1.9870 3.9001,1.9987 3.9104,2.0106 3.9205,2.0226 3.9304,2.0348 3.9402,2.0471 3.9497,2.0596 3.9590,2.0722 3.9681,2.0850 3.9771,2.0979 3.9858,2.1110 3.9943,2.1242 4.0026,2.1375 4.0107,2.1510 4.0186,2.1645 4.0263,2.1782 4.0338,2.1921 4.0410,2.2060 4.0480,2.2201 4.0548,2.2342 4.0614,2.2485 4.0678,2.2629 4.0739,2.2773 4.0798,2.2919 4.0854,2.3065 4.0909,2.3213 4.0961,2.3361 4.1011,2.3510 4.1058,2.3660 4.1103,2.3810 4.1146,2.3961 4.1186,2.4113 4.1224,2.4266 4.1259,2.4419 4.1292,2.4572 4.1323,2.4726 4.1351,2.4881 4.1377,2.5036 4.1400,2.5191 4.1421,2.5347 4.1440,2.5503 4.1456,2.5659 4.1469,2.5815 4.1480,2.5972 4.1489,2.6129 4.1495,2.6286 4.1499,2.6443 4.15,2.6600"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.3" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.5" stroke-width="0.0100"><path d="M 4.15,1.6600 L 3.15,1.6600 A 1.0 1.0 0 0 1 4.15,2.6600 L 4.15,1.6600"/></g><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.2" stroke-width="0.0200"><polyline points="5.1500,-1.38 5.1480,-1.4428 5.1421,-1.5053 5.1323,-1.5674 5.1186,-1.6287 5.1011,-1.6890 5.0798,-1.7481 5.0548,-1.8058 5.0263,-1.8618 4.9943,-1.9158 4.9590,-1.9678 4.9205,-2.0174 4.8790,-2.0645 4.8345,-2.1090 4.7874,-2.1505 4.7378,-2.1890 4.6858,-2.2243 4.6318,-2.2563 4.5758,-2.2848 4.5181,-2.3098 4.4590,-2.3311 4.3987,-2.3486 4.3374,-2.3623 4.2753,-2.3721 4.2128,-2.3780 4.15,-2.38 4.0872,-2.3780 4.0247,-2.3721 3.9626,-2.3623 3.9013,-2.3486 3.8410,-2.3311 3.7819,-2.3098 3.7242,-2.2848 3.6682,-2.2563 3.6142,-2.2243 3.5622,-2.1890 3.5126,-2.1505 3.4655,-2.1090 3.4210,-2.0645 3.3795,-2.0174 3.3410,-1.9678 3.3057,-1.9158 3.2737,-1.8618 3.2452,-1.8058 3.2202,-1.7481 3.1989,-1.6890 3.1814,-1.6287 3.1677,-1.5674 3.1579,-1.5053 3.1520,-1.4428 3.15,-1.3800 3.1520,-1.3172 3.1579,-1.2547 3.1677,-1.1926 3.1814,-1.1313 3.1989,-1.0710 3.2202,-1.0119 3.2452,-0.9542 3.2737,-0.8982 3.3057,-0.8442 3.3410,-0.7922 3.3795,-0.7426 3.4210,-0.6955 3.4655,-0.6510 3.5126,-0.6095 3.5622,-0.5710 3.6142,-0.5357 3.6682,-0.5037 3.7242,-0.4752 3.7819,-0.4502 3.8410,-0.4289 3.9013,-0.4114 3.9626,-0.3977 4.0247,-0.3879 4.0872,-0.3820 4.15,-0.3800 4.2128,-0.3820 4.2753,-0.3879 4.3374,-0.3977 4.3987,-0.4114 4.4590,-0.4289 4.5181,-0.4502 4.5758,-0.4752 4.6318,-0.5037 4.6858,-0.5357 4.7378,-0.5710 4.7874,-0.6095 4.8345,-0.6510 4.8790,-0.6955 4.9205,-0.7426 4.9590,-0.7922 4.9943,-0.8442 5.0263,-0.8982 5.0548,-0.9542 5.0798,-1.0119 5.1011,-1.0710 5.1186,-1.1313 5.1323,-1.1926 5.1421,-1.2547 5.1480,-1.3172 5.1500,-1.38"/></g><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.2" stroke-width="0.0200"><polyline points="4.15,-0.3800 4.1480,-0.4428 4.1421,-0.5053 4.1323,-0.5674 4.1186,-0.6287 4.1011,-0.6890 4.0798,-0.7481 4.0548,-0.8058 4.0263,-0.8618 3.9943,-0.9158 3.9590,-0.9678 3.9205,-1.0174 3.8790,-1.0645 3.8345,-1.1090 3.7874,-1.1505 3.7378,-1.1890 3.6858,-1.2243 3.6318,-1.2563 3.5758,-1.2848 3.5181,-1.3098 3.4590,-1.3311 3.3987,-1.3486 3.3374,-1.3623 3.2753,-1.3721 3.2128,-1.3780 3.15,-1.38 3.0872,-1.3780 3.0247,-1.3721 2.9626,-1.3623 2.9013,-1.3486 2.8410,-1.3311 2.7819,-1.3098 2.7242,-1.2848 2.6682,-1.2563 2.6142,-1.2243 2.5622,-1.1890 2.5126,-1.1505 2.4655,-1.1090 2.4210,-1.0645 2.3795,-1.0174 2.3410,-0.9678 2.3057,-0.9158 2.2737,-0.8618 2.2452,-0.8058 2.2202,-0.7481 2.1989,-0.6890 2.1814,-0.6287 2.1677,-0.5674 2.1579,-0.5053 2.1520,-0.4428 2.1500,-0.3800 2.1520,-0.3172 2.1579,-0.2547 2.1677,-0.1926 2.1814,-0.1313 2.1989,-0.0710 2.2202,-0.0119 2.2452,0.0458 2.2737,0.1018 2.3057,0.1558 2.3410,0.2078 2.3795,0.2574 2.4210,0.3045 2.4655,0.3490 2.5126,0.3905 2.5622,0.4290 2.6142,0.4643 2.6682,0.4963 2.7242,0.5248 2.7819,0.5498 2.8410,0.5711 2.9013,0.5886 2.9626,0.6023 3.0247,0.6121 3.0872,0.6180 3.15,0.6200 3.2128,0.6180 3.2753,0.6121 3.3374,0.6023 3.3987,0.5886 3.4590,0.5711 3.5181,0.5498 3.5758,0.5248 3.6318,0.4963 3.6858,0.4643 3.7378,0.4290 3.7874,0.3905 3.8345,0.3490 3.8790,0.3045 3.9205,0.2574 3.9590,0.2078 3.9943,0.1558 4.0263,0.1018 4.0548,0.0458 4.0798,-0.0119 4.1011,-0.0710 4.1186,-0.1313 4.1323,-0.1926 4.1421,-0.2547 4.1480,-0.3172 4.15,-0.3800"/></g><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.5" stroke-width="0.0500"><polyline points="3.15,-1.38 3.1501,-1.3643 3.1505,-1.3486 3.1511,-1.3329 3.1520,-1.3172 3.1531,-1.3015 3.1544,-1.2859 3.1560,-1.2703 3.1579,-1.2547 3.1600,-1.2391 3.1623,-1.2236 3.1649,-1.2081 3.1677,-1.1926 3.1708,-1.1772 3.1741,-1.1619 3.1776,-1.1466 3.1814,-1.1313 3.1854,-1.1161 3.1897,-1.1010 3.1942,-1.0860 3.1989,-1.0710 3.2039,-1.0561 3.2091,-1.0413 3.2146,-1.0265 3.2202,-1.0119 3.2261,-0.9973 3.2322,-0.9829 3.2386,-0.9685 3.2452,-0.9542 3.2520,-0.9401 3.2590,-0.9260 3.2662,-0.9121 3.2737,-0.8982 3.2814,-0.8845 3.2893,-0.8710 3.2974,-0.8575 3.3057,-0.8442 3.3142,-0.8310 3.3229,-0.8179 3.3319,-0.8050 3.3410,-0.7922 3.3503,-0.7796 3.3598,-0.7671 3.3696,-0.7548 3.3795,-0.7426 3.3896,-0.7306 3.3999,-0.7187 3.4104,-0.7070 3.4210,-0.6955 3.4319,-0.6841 3.4429,-0.6729 3.4541,-0.6619 3.4655,-0.6510 3.4770,-0.6404 3.4887,-0.6299 3.5006,-0.6196 3.5126,-0.6095 3.5248,-0.5996 3.5371,-0.5898 3.5496,-0.5803 3.5622,-0.5710 3.5750,-0.5619 3.5879,-0.5529 3.6010,-0.5442 3.6142,-0.5357 3.6275,-0.5274 3.6410,-0.5193 3.6545,-0.5114 3.6682,-0.5037 3.6821,-0.4962 3.6960,-0.4890 3.7101,-0.4820 3.7242,-0.4752 3.7385,-0.4686 3.7529,-0.4622 3.7673,-0.4561 3.7819,-0.4502 3.7965,-0.4446 3.8113,-0.4391 3.8261,-0.4339 3.8410,-0.4289 3.8560,-0.4242 3.8710,-0.4197 3.8861,-0.4154 3.9013,-0.4114 3.9166,-0.4076 3.9319,-0.4041 3.9472,-0.4008 3.9626,-0.3977 3.9781,-0.3949 3.9936,-0.3923 4.0091,-0.3900 4.0247,-0.3879 4.0403,-0.3860 4.0559,-0.3844 4.0715,-0.3831 4.0872,-0.3820 4.1029,-0.3811 4.1186,-0.3805 4.1343,-0.3801 4.15,-0.3800"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.3" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.5" stroke-width="0.0100"><path d="M 4.15,-1.38 L 3.15,-1.38 A 1.0 1.0 0 0 0 4.15,-0.3800 L 4.15,-1.38"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.4" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="3.64" y="-3.3200">False</text></g><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.2" stroke-width="0.0200"><polyline points="8.59,1.6674 8.5880,1.6046 8.5821,1.5421 8.5723,1.4801 8.5586,1.4187 8.5411,1.3584 8.5198,1.2993 8.4948,1.2417 8.4663,1.1857 8.4343,1.1316 8.3990,1.0797 8.3605,1.0300 8.3190,0.9829 8.2745,0.9385 8.2274,0.8969 8.1778,0.8584 8.1258,0.8231 8.0718,0.7911 8.0158,0.7626 7.9581,0.7377 7.8990,0.7164 7.8387,0.6989 7.7774,0.6852 7.7153,0.6753 7.6528,0.6694 7.59,0.6674 7.5272,0.6694 7.4647,0.6753 7.4026,0.6852 7.3413,0.6989 7.2810,0.7164 7.2219,0.7377 7.1642,0.7626 7.1082,0.7911 7.0542,0.8231 7.0022,0.8584 6.9526,0.8969 6.9055,0.9385 6.8610,0.9829 6.8195,1.0300 6.7810,1.0797 6.7457,1.1316 6.7137,1.1857 6.6852,1.2417 6.6602,1.2993 6.6389,1.3584 6.6214,1.4187 6.6077,1.4801 6.5979,1.5421 6.5920,1.6046 6.59,1.6674 6.5920,1.7302 6.5979,1.7928 6.6077,1.8548 6.6214,1.9161 6.6389,1.9765 6.6602,2.0356 6.6852,2.0932 6.7137,2.1492 6.7457,2.2033 6.7810,2.2552 6.8195,2.3049 6.8610,2.3520 6.9055,2.3964 6.9526,2.4380 7.0022,2.4765 7.0542,2.5118 7.1082,2.5437 7.1642,2.5723 7.2219,2.5972 7.2810,2.6185 7.3413,2.6360 7.4026,2.6497 7.4647,2.6596 7.5272,2.6655 7.59,2.6674 7.6528,2.6655 7.7153,2.6596 7.7774,2.6497 7.8387,2.6360 7.8990,2.6185 7.9581,2.5972 8.0158,2.5723 8.0718,2.5437 8.1258,2.5118 8.1778,2.4765 8.2274,2.4380 8.2745,2.3964 8.3190,2.3520 8.3605,2.3049 8.3990,2.2552 8.4343,2.2033 8.4663,2.1492 8.4948,2.0932 8.5198,2.0356 8.5411,1.9765 8.5586,1.9161 8.5723,1.8548 8.5821,1.7928 8.5880,1.7302 8.59,1.6674"/></g><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.2" stroke-width="0.0200"><polyline points="7.59,2.6674 7.5880,2.6046 7.5821,2.5421 7.5723,2.4801 7.5586,2.4187 7.5411,2.3584 7.5198,2.2993 7.4948,2.2417 7.4663,2.1857 7.4343,2.1316 7.3990,2.0797 7.3605,2.0300 7.3190,1.9829 7.2745,1.9385 7.2274,1.8969 7.1778,1.8584 7.1258,1.8231 7.0718,1.7911 7.0158,1.7626 6.9581,1.7377 6.8990,1.7164 6.8387,1.6989 6.7774,1.6852 6.7153,1.6753 6.6528,1.6694 6.59,1.6674 6.5272,1.6694 6.4647,1.6753 6.4026,1.6852 6.3413,1.6989 6.2810,1.7164 6.2219,1.7377 6.1642,1.7626 6.1082,1.7911 6.0542,1.8231 6.0022,1.8584 5.9526,1.8969 5.9055,1.9385 5.8610,1.9829 5.8195,2.0300 5.7810,2.0797 5.7457,2.1316 5.7137,2.1857 5.6852,2.2417 5.6602,2.2993 5.6389,2.3584 5.6214,2.4187 5.6077,2.4801 5.5979,2.5421 5.5920,2.6046 5.59,2.6674 5.5920,2.7302 5.5979,2.7928 5.6077,2.8548 5.6214,2.9161 5.6389,2.9765 5.6602,3.0356 5.6852,3.0932 5.7137,3.1492 5.7457,3.2033 5.7810,3.2552 5.8195,3.3049 5.8610,3.3520 5.9055,3.3964 5.9526,3.4380 6.0022,3.4765 6.0542,3.5118 6.1082,3.5437 6.1642,3.5723 6.2219,3.5972 6.2810,3.6185 6.3413,3.6360 6.4026,3.6497 6.4647,3.6596 6.5272,3.6655 6.59,3.6674 6.6528,3.6655 6.7153,3.6596 6.7774,3.6497 6.8387,3.6360 6.8990,3.6185 6.9581,3.5972 7.0158,3.5723 7.0718,3.5437 7.1258,3.5118 7.1778,3.4765 7.2274,3.4380 7.2745,3.3964 7.3190,3.3520 7.3605,3.3049 7.3990,3.2552 7.4343,3.2033 7.4663,3.1492 7.4948,3.0932 7.5198,3.0356 7.5411,2.9765 7.5586,2.9161 7.5723,2.8548 7.5821,2.7928 7.5880,2.7302 7.59,2.6674"/></g><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.5" stroke-width="0.0500"><polyline points="6.59,1.6674 6.5911,1.6203 6.5944,1.5733 6.6000,1.5265 6.6077,1.4801 6.6176,1.4340 6.6297,1.3884 6.6439,1.3435 6.6602,1.2993 6.6786,1.2559 6.6990,1.2134 6.7214,1.1720 6.7457,1.1316 6.7719,1.0924 6.7998,1.0545 6.8296,1.0180 6.8610,0.9829 6.8941,0.9493 6.9287,0.9173 6.9648,0.8870 7.0022,0.8584 7.0410,0.8316 7.0810,0.8067 7.1221,0.7837 7.1642,0.7626 7.2073,0.7436 7.2513,0.7266 7.2960,0.7116 7.3413,0.6989 7.3872,0.6882 7.4336,0.6797 7.4803,0.6735 7.5272,0.6694 7.5743,0.6676 7.6214,0.6679 7.6685,0.6705 7.7153,0.6753 7.7619,0.6823 7.8081,0.6915 7.8539,0.7029 7.8990,0.7164 7.9435,0.7320 7.9871,0.7497 8.0299,0.7694 8.0718,0.7911 8.1125,0.8148 8.1521,0.8404 8.1904,0.8678 8.2274,0.8969 8.2630,0.9278 8.2971,0.9603 8.3296,0.9944 8.3605,1.0300 8.3897,1.0670 8.4171,1.1054 8.4426,1.1449 8.4663,1.1857 8.4880,1.2275 8.5078,1.2703 8.5254,1.3140 8.5411,1.3584 8.5546,1.4036 8.5659,1.4493 8.5751,1.4955 8.5821,1.5421 8.5869,1.5890 8.5895,1.6360 8.5899,1.6831 8.5880,1.7302 8.5840,1.7772 8.5777,1.8239 8.5692,1.8702 8.5586,1.9161 8.5458,1.9615 8.5309,2.0062 8.5139,2.0501 8.4948,2.0932 8.4738,2.1354 8.4507,2.1765 8.4258,2.2165 8.3990,2.2552 8.3704,2.2927 8.3401,2.3288 8.3081,2.3634 8.2745,2.3964 8.2394,2.4278 8.2029,2.4576 8.1650,2.4856 8.1258,2.5118 8.0855,2.5361 8.0440,2.5584 8.0015,2.5788 7.9581,2.5972 7.9139,2.6135 7.8690,2.6277 7.8234,2.6398 7.7774,2.6497 7.7309,2.6575 7.6841,2.6630 7.6371,2.6663 7.59,2.6674"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.3" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.5" stroke-width="0.0100"><path d="M 7.59,1.6674 L 6.59,1.6674 A 1.0 1.0 0 1 1 7.59,2.6674 L 7.59,1.6674"/></g><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.2" stroke-width="0.0200"><polyline points="8.6049,-1.3874 8.6029,-1.4502 8.5970,-1.5128 8.5872,-1.5748 8.5735,-1.6361 8.5559,-1.6965 8.5347,-1.7556 8.5097,-1.8132 8.4812,-1.8692 8.4492,-1.9233 8.4139,-1.9752 8.3754,-2.0249 8.3338,-2.0720 8.2894,-2.1164 8.2423,-2.1580 8.1927,-2.1965 8.1407,-2.2318 8.0866,-2.2637 8.0307,-2.2923 7.9730,-2.3172 7.9139,-2.3385 7.8536,-2.3560 7.7923,-2.3697 7.7302,-2.3796 7.6677,-2.3855 7.6049,-2.3874 7.5421,-2.3855 7.4795,-2.3796 7.4175,-2.3697 7.3562,-2.3560 7.2959,-2.3385 7.2368,-2.3172 7.1791,-2.2923 7.1231,-2.2637 7.0690,-2.2318 7.0171,-2.1965 6.9675,-2.1580 6.9203,-2.1164 6.8759,-2.0720 6.8344,-2.0249 6.7959,-1.9752 6.7605,-1.9233 6.7286,-1.8692 6.7000,-1.8132 6.6751,-1.7556 6.6538,-1.6965 6.6363,-1.6361 6.6226,-1.5748 6.6128,-1.5128 6.6068,-1.4502 6.6049,-1.3874 6.6068,-1.3246 6.6128,-1.2621 6.6226,-1.2001 6.6363,-1.1387 6.6538,-1.0784 6.6751,-1.0193 6.7000,-0.9617 6.7286,-0.9057 6.7605,-0.8516 6.7959,-0.7997 6.8344,-0.7500 6.8759,-0.7029 6.9203,-0.6585 6.9675,-0.6169 7.0171,-0.5784 7.0690,-0.5431 7.1231,-0.5111 7.1791,-0.4826 7.2368,-0.4577 7.2959,-0.4364 7.3562,-0.4189 7.4175,-0.4052 7.4795,-0.3953 7.5421,-0.3894 7.6049,-0.3874 7.6677,-0.3894 7.7302,-0.3953 7.7923,-0.4052 7.8536,-0.4189 7.9139,-0.4364 7.9730,-0.4577 8.0307,-0.4826 8.0866,-0.5111 8.1407,-0.5431 8.1927,-0.5784 8.2423,-0.6169 8.2894,-0.6585 8.3338,-0.7029 8.3754,-0.7500 8.4139,-0.7997 8.4492,-0.8516 8.4812,-0.9057 8.5097,-0.9617 8.5347,-1.0193 8.5559,-1.0784 8.5735,-1.1387 8.5872,-1.2001 8.5970,-1.2621 8.6029,-1.3246 8.6049,-1.3874"/></g><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.2" stroke-width="0.0200"><polyline points="7.6049,-0.3874 7.6029,-0.4502 7.5970,-0.5128 7.5872,-0.5748 7.5735,-0.6361 7.5559,-0.6965 7.5347,-0.7556 7.5097,-0.8132 7.4812,-0.8692 7.4492,-0.9233 7.4139,-0.9752 7.3754,-1.0249 7.3338,-1.0720 7.2894,-1.1164 7.2423,-1.1580 7.1927,-1.1965 7.1407,-1.2318 7.0866,-1.2637 7.0307,-1.2923 6.9730,-1.3172 6.9139,-1.3385 6.8536,-1.3560 6.7923,-1.3697 6.7302,-1.3796 6.6677,-1.3855 6.6049,-1.3874 6.5421,-1.3855 6.4795,-1.3796 6.4175,-1.3697 6.3562,-1.3560 6.2959,-1.3385 6.2368,-1.3172 6.1791,-1.2923 6.1231,-1.2637 6.0690,-1.2318 6.0171,-1.1965 5.9675,-1.1580 5.9203,-1.1164 5.8759,-1.0720 5.8344,-1.0249 5.7959,-0.9752 5.7605,-0.9233 5.7286,-0.8692 5.7000,-0.8132 5.6751,-0.7556 5.6538,-0.6965 5.6363,-0.6361 5.6226,-0.5748 5.6128,-0.5128 5.6068,-0.4502 5.6049,-0.3874 5.6068,-0.3246 5.6128,-0.2621 5.6226,-0.2001 5.6363,-0.1387 5.6538,-0.0784 5.6751,-0.0193 5.7000,0.0383 5.7286,0.0943 5.7605,0.1484 5.7959,0.2003 5.8344,0.2500 5.8759,0.2971 5.9203,0.3415 5.9675,0.3831 6.0171,0.4216 6.0690,0.4569 6.1231,0.4889 6.1791,0.5174 6.2368,0.5423 6.2959,0.5636 6.3562,0.5811 6.4175,0.5948 6.4795,0.6047 6.5421,0.6106 6.6049,0.6126 6.6677,0.6106 6.7302,0.6047 6.7923,0.5948 6.8536,0.5811 6.9139,0.5636 6.9730,0.5423 7.0307,0.5174 7.0866,0.4889 7.1407,0.4569 7.1927,0.4216 7.2423,0.3831 7.2894,0.3415 7.3338,0.2971 7.3754,0.2500 7.4139,0.2003 7.4492,0.1484 7.4812,0.0943 7.5097,0.0383 7.5347,-0.0193 7.5559,-0.0784 7.5735,-0.1387 7.5872,-0.2001 7.5970,-0.2621 7.6029,-0.3246 7.6049,-0.3874"/></g><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.5" stroke-width="0.0500"><polyline points="6.6049,-1.3874 6.5578,-1.3863 6.5108,-1.3830 6.4640,-1.3775 6.4175,-1.3697 6.3714,-1.3598 6.3259,-1.3477 6.2810,-1.3335 6.2368,-1.3172 6.1934,-1.2988 6.1509,-1.2784 6.1094,-1.2561 6.0690,-1.2318 6.0299,-1.2056 5.9920,-1.1776 5.9554,-1.1478 5.9203,-1.1164 5.8868,-1.0834 5.8548,-1.0488 5.8244,-1.0127 5.7959,-0.9752 5.7691,-0.9365 5.7441,-0.8965 5.7211,-0.8554 5.7000,-0.8132 5.6810,-0.7701 5.6640,-0.7262 5.6491,-0.6815 5.6363,-0.6361 5.6257,-0.5902 5.6172,-0.5439 5.6109,-0.4972 5.6068,-0.4502 5.6050,-0.4031 5.6054,-0.3560 5.6080,-0.3090 5.6128,-0.2621 5.6198,-0.2155 5.6290,-0.1693 5.6403,-0.1236 5.6538,-0.0784 5.6694,-0.0340 5.6871,0.0097 5.7068,0.0525 5.7286,0.0943 5.7522,0.1351 5.7778,0.1746 5.8052,0.2130 5.8344,0.2500 5.8652,0.2856 5.8978,0.3197 5.9319,0.3522 5.9675,0.3831 6.0045,0.4122 6.0428,0.4396 6.0824,0.4652 6.1231,0.4889 6.1649,0.5106 6.2077,0.5303 6.2514,0.5480 6.2959,0.5636 6.3410,0.5771 6.3867,0.5885 6.4329,0.5977 6.4795,0.6047 6.5264,0.6095 6.5735,0.6121 6.6206,0.6124 6.6677,0.6106 6.7146,0.6065 6.7613,0.6003 6.8077,0.5918 6.8536,0.5811 6.8989,0.5684 6.9436,0.5534 6.9876,0.5364 7.0307,0.5174 7.0728,0.4963 7.1139,0.4733 7.1539,0.4484 7.1927,0.4216 7.2301,0.3930 7.2662,0.3627 7.3008,0.3307 7.3338,0.2971 7.3653,0.2620 7.3950,0.2255 7.4230,0.1876 7.4492,0.1484 7.4735,0.1080 7.4959,0.0666 7.5163,0.0241 7.5347,-0.0193 7.5510,-0.0635 7.5652,-0.1084 7.5772,-0.1540 7.5872,-0.2001 7.5949,-0.2465 7.6004,-0.2933 7.6038,-0.3403 7.6049,-0.3874"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.3" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.5" stroke-width="0.0100"><path d="M 7.6049,-1.3874 L 6.6049,-1.3874 A 1.0 1.0 0 1 0 7.6049,-0.3874 L 7.6049,-1.3874"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.4" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="7.08" y="-3.3274">True</text></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.6" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="5.5000" y="-4.3749">Large</text></g></g><g class="hud"/></svg>
+</style><g class="chart"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.6" text-anchor="middle"><text x="0.5" y="0" transform="rotate(-90.0, 0.5, 0)">Sweep</text></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.4" text-anchor="middle"><text x="1.5700" y="1.5100" transform="rotate(-90.0, 1.5700, 1.5100)">True</text></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.4" text-anchor="middle"><text x="1.5700" y="-1.5100" transform="rotate(-90.0, 1.5700, -1.5100)">False</text></g><g stroke-width="0.0200" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.2" fill="none"><polyline points="5.1500,1.6600 5.1480,1.5972 5.1421,1.5347 5.1323,1.4726 5.1186,1.4113 5.1011,1.3510 5.0798,1.2919 5.0548,1.2342 5.0263,1.1782 4.9943,1.1242 4.9590,1.0722 4.9205,1.0226 4.8790,0.9755 4.8345,0.9310 4.7874,0.8895 4.7378,0.8510 4.6858,0.8157 4.6318,0.7837 4.5758,0.7552 4.5181,0.7302 4.4590,0.7089 4.3987,0.6914 4.3374,0.6777 4.2753,0.6679 4.2128,0.6620 4.15,0.6600 4.0872,0.6620 4.0247,0.6679 3.9626,0.6777 3.9013,0.6914 3.8410,0.7089 3.7819,0.7302 3.7242,0.7552 3.6682,0.7837 3.6142,0.8157 3.5622,0.8510 3.5126,0.8895 3.4655,0.9310 3.4210,0.9755 3.3795,1.0226 3.3410,1.0722 3.3057,1.1242 3.2737,1.1782 3.2452,1.2342 3.2202,1.2919 3.1989,1.3510 3.1814,1.4113 3.1677,1.4726 3.1579,1.5347 3.1520,1.5972 3.15,1.6600 3.1520,1.7228 3.1579,1.7853 3.1677,1.8474 3.1814,1.9087 3.1989,1.9690 3.2202,2.0281 3.2452,2.0858 3.2737,2.1418 3.3057,2.1958 3.3410,2.2478 3.3795,2.2974 3.4210,2.3445 3.4655,2.3890 3.5126,2.4305 3.5622,2.4690 3.6142,2.5043 3.6682,2.5363 3.7242,2.5648 3.7819,2.5898 3.8410,2.6111 3.9013,2.6286 3.9626,2.6423 4.0247,2.6521 4.0872,2.6580 4.15,2.6600 4.2128,2.6580 4.2753,2.6521 4.3374,2.6423 4.3987,2.6286 4.4590,2.6111 4.5181,2.5898 4.5758,2.5648 4.6318,2.5363 4.6858,2.5043 4.7378,2.4690 4.7874,2.4305 4.8345,2.3890 4.8790,2.3445 4.9205,2.2974 4.9590,2.2478 4.9943,2.1958 5.0263,2.1418 5.0548,2.0858 5.0798,2.0281 5.1011,1.9690 5.1186,1.9087 5.1323,1.8474 5.1421,1.7853 5.1480,1.7228 5.1500,1.6600"/></g><g stroke-width="0.0200" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.2" fill="none"><polyline points="4.15,2.6600 4.1480,2.5972 4.1421,2.5347 4.1323,2.4726 4.1186,2.4113 4.1011,2.3510 4.0798,2.2919 4.0548,2.2342 4.0263,2.1782 3.9943,2.1242 3.9590,2.0722 3.9205,2.0226 3.8790,1.9755 3.8345,1.9310 3.7874,1.8895 3.7378,1.8510 3.6858,1.8157 3.6318,1.7837 3.5758,1.7552 3.5181,1.7302 3.4590,1.7089 3.3987,1.6914 3.3374,1.6777 3.2753,1.6679 3.2128,1.6620 3.15,1.6600 3.0872,1.6620 3.0247,1.6679 2.9626,1.6777 2.9013,1.6914 2.8410,1.7089 2.7819,1.7302 2.7242,1.7552 2.6682,1.7837 2.6142,1.8157 2.5622,1.8510 2.5126,1.8895 2.4655,1.9310 2.4210,1.9755 2.3795,2.0226 2.3410,2.0722 2.3057,2.1242 2.2737,2.1782 2.2452,2.2342 2.2202,2.2919 2.1989,2.3510 2.1814,2.4113 2.1677,2.4726 2.1579,2.5347 2.1520,2.5972 2.1500,2.6600 2.1520,2.7228 2.1579,2.7853 2.1677,2.8474 2.1814,2.9087 2.1989,2.9690 2.2202,3.0281 2.2452,3.0858 2.2737,3.1418 2.3057,3.1958 2.3410,3.2478 2.3795,3.2974 2.4210,3.3445 2.4655,3.3890 2.5126,3.4305 2.5622,3.4690 2.6142,3.5043 2.6682,3.5363 2.7242,3.5648 2.7819,3.5898 2.8410,3.6111 2.9013,3.6286 2.9626,3.6423 3.0247,3.6521 3.0872,3.6580 3.15,3.6600 3.2128,3.6580 3.2753,3.6521 3.3374,3.6423 3.3987,3.6286 3.4590,3.6111 3.5181,3.5898 3.5758,3.5648 3.6318,3.5363 3.6858,3.5043 3.7378,3.4690 3.7874,3.4305 3.8345,3.3890 3.8790,3.3445 3.9205,3.2974 3.9590,3.2478 3.9943,3.1958 4.0263,3.1418 4.0548,3.0858 4.0798,3.0281 4.1011,2.9690 4.1186,2.9087 4.1323,2.8474 4.1421,2.7853 4.1480,2.7228 4.15,2.6600"/></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.5" fill="none"><polyline points="3.15,1.6600 3.1657,1.6601 3.1814,1.6605 3.1971,1.6611 3.2128,1.6620 3.2285,1.6631 3.2441,1.6644 3.2597,1.6660 3.2753,1.6679 3.2909,1.6700 3.3064,1.6723 3.3219,1.6749 3.3374,1.6777 3.3528,1.6808 3.3681,1.6841 3.3834,1.6876 3.3987,1.6914 3.4139,1.6954 3.4290,1.6997 3.4440,1.7042 3.4590,1.7089 3.4739,1.7139 3.4887,1.7191 3.5035,1.7246 3.5181,1.7302 3.5327,1.7361 3.5471,1.7422 3.5615,1.7486 3.5758,1.7552 3.5899,1.7620 3.6040,1.7690 3.6179,1.7762 3.6318,1.7837 3.6455,1.7914 3.6590,1.7993 3.6725,1.8074 3.6858,1.8157 3.6990,1.8242 3.7121,1.8329 3.7250,1.8419 3.7378,1.8510 3.7504,1.8603 3.7629,1.8698 3.7752,1.8796 3.7874,1.8895 3.7994,1.8996 3.8113,1.9099 3.8230,1.9204 3.8345,1.9310 3.8459,1.9419 3.8571,1.9529 3.8681,1.9641 3.8790,1.9755 3.8896,1.9870 3.9001,1.9987 3.9104,2.0106 3.9205,2.0226 3.9304,2.0348 3.9402,2.0471 3.9497,2.0596 3.9590,2.0722 3.9681,2.0850 3.9771,2.0979 3.9858,2.1110 3.9943,2.1242 4.0026,2.1375 4.0107,2.1510 4.0186,2.1645 4.0263,2.1782 4.0338,2.1921 4.0410,2.2060 4.0480,2.2201 4.0548,2.2342 4.0614,2.2485 4.0678,2.2629 4.0739,2.2773 4.0798,2.2919 4.0854,2.3065 4.0909,2.3213 4.0961,2.3361 4.1011,2.3510 4.1058,2.3660 4.1103,2.3810 4.1146,2.3961 4.1186,2.4113 4.1224,2.4266 4.1259,2.4419 4.1292,2.4572 4.1323,2.4726 4.1351,2.4881 4.1377,2.5036 4.1400,2.5191 4.1421,2.5347 4.1440,2.5503 4.1456,2.5659 4.1469,2.5815 4.1480,2.5972 4.1489,2.6129 4.1495,2.6286 4.1499,2.6443 4.15,2.6600"/></g><g stroke-width="0.0100" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.5" fill="rgb(5%, 5%, 5%)" fill-opacity="0.3"><path d="M 4.15,1.6600 L 3.15,1.6600 A 1.0 1.0 0 0 1 4.15,2.6600 L 4.15,1.6600"/></g><g stroke-width="0.0200" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.2" fill="none"><polyline points="5.1500,-1.38 5.1480,-1.4428 5.1421,-1.5053 5.1323,-1.5674 5.1186,-1.6287 5.1011,-1.6890 5.0798,-1.7481 5.0548,-1.8058 5.0263,-1.8618 4.9943,-1.9158 4.9590,-1.9678 4.9205,-2.0174 4.8790,-2.0645 4.8345,-2.1090 4.7874,-2.1505 4.7378,-2.1890 4.6858,-2.2243 4.6318,-2.2563 4.5758,-2.2848 4.5181,-2.3098 4.4590,-2.3311 4.3987,-2.3486 4.3374,-2.3623 4.2753,-2.3721 4.2128,-2.3780 4.15,-2.38 4.0872,-2.3780 4.0247,-2.3721 3.9626,-2.3623 3.9013,-2.3486 3.8410,-2.3311 3.7819,-2.3098 3.7242,-2.2848 3.6682,-2.2563 3.6142,-2.2243 3.5622,-2.1890 3.5126,-2.1505 3.4655,-2.1090 3.4210,-2.0645 3.3795,-2.0174 3.3410,-1.9678 3.3057,-1.9158 3.2737,-1.8618 3.2452,-1.8058 3.2202,-1.7481 3.1989,-1.6890 3.1814,-1.6287 3.1677,-1.5674 3.1579,-1.5053 3.1520,-1.4428 3.15,-1.3800 3.1520,-1.3172 3.1579,-1.2547 3.1677,-1.1926 3.1814,-1.1313 3.1989,-1.0710 3.2202,-1.0119 3.2452,-0.9542 3.2737,-0.8982 3.3057,-0.8442 3.3410,-0.7922 3.3795,-0.7426 3.4210,-0.6955 3.4655,-0.6510 3.5126,-0.6095 3.5622,-0.5710 3.6142,-0.5357 3.6682,-0.5037 3.7242,-0.4752 3.7819,-0.4502 3.8410,-0.4289 3.9013,-0.4114 3.9626,-0.3977 4.0247,-0.3879 4.0872,-0.3820 4.15,-0.3800 4.2128,-0.3820 4.2753,-0.3879 4.3374,-0.3977 4.3987,-0.4114 4.4590,-0.4289 4.5181,-0.4502 4.5758,-0.4752 4.6318,-0.5037 4.6858,-0.5357 4.7378,-0.5710 4.7874,-0.6095 4.8345,-0.6510 4.8790,-0.6955 4.9205,-0.7426 4.9590,-0.7922 4.9943,-0.8442 5.0263,-0.8982 5.0548,-0.9542 5.0798,-1.0119 5.1011,-1.0710 5.1186,-1.1313 5.1323,-1.1926 5.1421,-1.2547 5.1480,-1.3172 5.1500,-1.38"/></g><g stroke-width="0.0200" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.2" fill="none"><polyline points="4.15,-0.3800 4.1480,-0.4428 4.1421,-0.5053 4.1323,-0.5674 4.1186,-0.6287 4.1011,-0.6890 4.0798,-0.7481 4.0548,-0.8058 4.0263,-0.8618 3.9943,-0.9158 3.9590,-0.9678 3.9205,-1.0174 3.8790,-1.0645 3.8345,-1.1090 3.7874,-1.1505 3.7378,-1.1890 3.6858,-1.2243 3.6318,-1.2563 3.5758,-1.2848 3.5181,-1.3098 3.4590,-1.3311 3.3987,-1.3486 3.3374,-1.3623 3.2753,-1.3721 3.2128,-1.3780 3.15,-1.38 3.0872,-1.3780 3.0247,-1.3721 2.9626,-1.3623 2.9013,-1.3486 2.8410,-1.3311 2.7819,-1.3098 2.7242,-1.2848 2.6682,-1.2563 2.6142,-1.2243 2.5622,-1.1890 2.5126,-1.1505 2.4655,-1.1090 2.4210,-1.0645 2.3795,-1.0174 2.3410,-0.9678 2.3057,-0.9158 2.2737,-0.8618 2.2452,-0.8058 2.2202,-0.7481 2.1989,-0.6890 2.1814,-0.6287 2.1677,-0.5674 2.1579,-0.5053 2.1520,-0.4428 2.1500,-0.3800 2.1520,-0.3172 2.1579,-0.2547 2.1677,-0.1926 2.1814,-0.1313 2.1989,-0.0710 2.2202,-0.0119 2.2452,0.0458 2.2737,0.1018 2.3057,0.1558 2.3410,0.2078 2.3795,0.2574 2.4210,0.3045 2.4655,0.3490 2.5126,0.3905 2.5622,0.4290 2.6142,0.4643 2.6682,0.4963 2.7242,0.5248 2.7819,0.5498 2.8410,0.5711 2.9013,0.5886 2.9626,0.6023 3.0247,0.6121 3.0872,0.6180 3.15,0.6200 3.2128,0.6180 3.2753,0.6121 3.3374,0.6023 3.3987,0.5886 3.4590,0.5711 3.5181,0.5498 3.5758,0.5248 3.6318,0.4963 3.6858,0.4643 3.7378,0.4290 3.7874,0.3905 3.8345,0.3490 3.8790,0.3045 3.9205,0.2574 3.9590,0.2078 3.9943,0.1558 4.0263,0.1018 4.0548,0.0458 4.0798,-0.0119 4.1011,-0.0710 4.1186,-0.1313 4.1323,-0.1926 4.1421,-0.2547 4.1480,-0.3172 4.15,-0.3800"/></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.5" fill="none"><polyline points="3.15,-1.38 3.1501,-1.3643 3.1505,-1.3486 3.1511,-1.3329 3.1520,-1.3172 3.1531,-1.3015 3.1544,-1.2859 3.1560,-1.2703 3.1579,-1.2547 3.1600,-1.2391 3.1623,-1.2236 3.1649,-1.2081 3.1677,-1.1926 3.1708,-1.1772 3.1741,-1.1619 3.1776,-1.1466 3.1814,-1.1313 3.1854,-1.1161 3.1897,-1.1010 3.1942,-1.0860 3.1989,-1.0710 3.2039,-1.0561 3.2091,-1.0413 3.2146,-1.0265 3.2202,-1.0119 3.2261,-0.9973 3.2322,-0.9829 3.2386,-0.9685 3.2452,-0.9542 3.2520,-0.9401 3.2590,-0.9260 3.2662,-0.9121 3.2737,-0.8982 3.2814,-0.8845 3.2893,-0.8710 3.2974,-0.8575 3.3057,-0.8442 3.3142,-0.8310 3.3229,-0.8179 3.3319,-0.8050 3.3410,-0.7922 3.3503,-0.7796 3.3598,-0.7671 3.3696,-0.7548 3.3795,-0.7426 3.3896,-0.7306 3.3999,-0.7187 3.4104,-0.7070 3.4210,-0.6955 3.4319,-0.6841 3.4429,-0.6729 3.4541,-0.6619 3.4655,-0.6510 3.4770,-0.6404 3.4887,-0.6299 3.5006,-0.6196 3.5126,-0.6095 3.5248,-0.5996 3.5371,-0.5898 3.5496,-0.5803 3.5622,-0.5710 3.5750,-0.5619 3.5879,-0.5529 3.6010,-0.5442 3.6142,-0.5357 3.6275,-0.5274 3.6410,-0.5193 3.6545,-0.5114 3.6682,-0.5037 3.6821,-0.4962 3.6960,-0.4890 3.7101,-0.4820 3.7242,-0.4752 3.7385,-0.4686 3.7529,-0.4622 3.7673,-0.4561 3.7819,-0.4502 3.7965,-0.4446 3.8113,-0.4391 3.8261,-0.4339 3.8410,-0.4289 3.8560,-0.4242 3.8710,-0.4197 3.8861,-0.4154 3.9013,-0.4114 3.9166,-0.4076 3.9319,-0.4041 3.9472,-0.4008 3.9626,-0.3977 3.9781,-0.3949 3.9936,-0.3923 4.0091,-0.3900 4.0247,-0.3879 4.0403,-0.3860 4.0559,-0.3844 4.0715,-0.3831 4.0872,-0.3820 4.1029,-0.3811 4.1186,-0.3805 4.1343,-0.3801 4.15,-0.3800"/></g><g stroke-width="0.0100" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.5" fill="rgb(5%, 5%, 5%)" fill-opacity="0.3"><path d="M 4.15,-1.38 L 3.15,-1.38 A 1.0 1.0 0 0 0 4.15,-0.3800 L 4.15,-1.38"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.4" text-anchor="middle"><text x="3.64" y="-3.3200">False</text></g><g stroke-width="0.0200" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.2" fill="none"><polyline points="8.59,1.6674 8.5880,1.6046 8.5821,1.5421 8.5723,1.4801 8.5586,1.4187 8.5411,1.3584 8.5198,1.2993 8.4948,1.2417 8.4663,1.1857 8.4343,1.1316 8.3990,1.0797 8.3605,1.0300 8.3190,0.9829 8.2745,0.9385 8.2274,0.8969 8.1778,0.8584 8.1258,0.8231 8.0718,0.7911 8.0158,0.7626 7.9581,0.7377 7.8990,0.7164 7.8387,0.6989 7.7774,0.6852 7.7153,0.6753 7.6528,0.6694 7.59,0.6674 7.5272,0.6694 7.4647,0.6753 7.4026,0.6852 7.3413,0.6989 7.2810,0.7164 7.2219,0.7377 7.1642,0.7626 7.1082,0.7911 7.0542,0.8231 7.0022,0.8584 6.9526,0.8969 6.9055,0.9385 6.8610,0.9829 6.8195,1.0300 6.7810,1.0797 6.7457,1.1316 6.7137,1.1857 6.6852,1.2417 6.6602,1.2993 6.6389,1.3584 6.6214,1.4187 6.6077,1.4801 6.5979,1.5421 6.5920,1.6046 6.59,1.6674 6.5920,1.7302 6.5979,1.7928 6.6077,1.8548 6.6214,1.9161 6.6389,1.9765 6.6602,2.0356 6.6852,2.0932 6.7137,2.1492 6.7457,2.2033 6.7810,2.2552 6.8195,2.3049 6.8610,2.3520 6.9055,2.3964 6.9526,2.4380 7.0022,2.4765 7.0542,2.5118 7.1082,2.5437 7.1642,2.5723 7.2219,2.5972 7.2810,2.6185 7.3413,2.6360 7.4026,2.6497 7.4647,2.6596 7.5272,2.6655 7.59,2.6674 7.6528,2.6655 7.7153,2.6596 7.7774,2.6497 7.8387,2.6360 7.8990,2.6185 7.9581,2.5972 8.0158,2.5723 8.0718,2.5437 8.1258,2.5118 8.1778,2.4765 8.2274,2.4380 8.2745,2.3964 8.3190,2.3520 8.3605,2.3049 8.3990,2.2552 8.4343,2.2033 8.4663,2.1492 8.4948,2.0932 8.5198,2.0356 8.5411,1.9765 8.5586,1.9161 8.5723,1.8548 8.5821,1.7928 8.5880,1.7302 8.59,1.6674"/></g><g stroke-width="0.0200" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.2" fill="none"><polyline points="7.59,2.6674 7.5880,2.6046 7.5821,2.5421 7.5723,2.4801 7.5586,2.4187 7.5411,2.3584 7.5198,2.2993 7.4948,2.2417 7.4663,2.1857 7.4343,2.1316 7.3990,2.0797 7.3605,2.0300 7.3190,1.9829 7.2745,1.9385 7.2274,1.8969 7.1778,1.8584 7.1258,1.8231 7.0718,1.7911 7.0158,1.7626 6.9581,1.7377 6.8990,1.7164 6.8387,1.6989 6.7774,1.6852 6.7153,1.6753 6.6528,1.6694 6.59,1.6674 6.5272,1.6694 6.4647,1.6753 6.4026,1.6852 6.3413,1.6989 6.2810,1.7164 6.2219,1.7377 6.1642,1.7626 6.1082,1.7911 6.0542,1.8231 6.0022,1.8584 5.9526,1.8969 5.9055,1.9385 5.8610,1.9829 5.8195,2.0300 5.7810,2.0797 5.7457,2.1316 5.7137,2.1857 5.6852,2.2417 5.6602,2.2993 5.6389,2.3584 5.6214,2.4187 5.6077,2.4801 5.5979,2.5421 5.5920,2.6046 5.59,2.6674 5.5920,2.7302 5.5979,2.7928 5.6077,2.8548 5.6214,2.9161 5.6389,2.9765 5.6602,3.0356 5.6852,3.0932 5.7137,3.1492 5.7457,3.2033 5.7810,3.2552 5.8195,3.3049 5.8610,3.3520 5.9055,3.3964 5.9526,3.4380 6.0022,3.4765 6.0542,3.5118 6.1082,3.5437 6.1642,3.5723 6.2219,3.5972 6.2810,3.6185 6.3413,3.6360 6.4026,3.6497 6.4647,3.6596 6.5272,3.6655 6.59,3.6674 6.6528,3.6655 6.7153,3.6596 6.7774,3.6497 6.8387,3.6360 6.8990,3.6185 6.9581,3.5972 7.0158,3.5723 7.0718,3.5437 7.1258,3.5118 7.1778,3.4765 7.2274,3.4380 7.2745,3.3964 7.3190,3.3520 7.3605,3.3049 7.3990,3.2552 7.4343,3.2033 7.4663,3.1492 7.4948,3.0932 7.5198,3.0356 7.5411,2.9765 7.5586,2.9161 7.5723,2.8548 7.5821,2.7928 7.5880,2.7302 7.59,2.6674"/></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.5" fill="none"><polyline points="6.59,1.6674 6.5911,1.6203 6.5944,1.5733 6.6000,1.5265 6.6077,1.4801 6.6176,1.4340 6.6297,1.3884 6.6439,1.3435 6.6602,1.2993 6.6786,1.2559 6.6990,1.2134 6.7214,1.1720 6.7457,1.1316 6.7719,1.0924 6.7998,1.0545 6.8296,1.0180 6.8610,0.9829 6.8941,0.9493 6.9287,0.9173 6.9648,0.8870 7.0022,0.8584 7.0410,0.8316 7.0810,0.8067 7.1221,0.7837 7.1642,0.7626 7.2073,0.7436 7.2513,0.7266 7.2960,0.7116 7.3413,0.6989 7.3872,0.6882 7.4336,0.6797 7.4803,0.6735 7.5272,0.6694 7.5743,0.6676 7.6214,0.6679 7.6685,0.6705 7.7153,0.6753 7.7619,0.6823 7.8081,0.6915 7.8539,0.7029 7.8990,0.7164 7.9435,0.7320 7.9871,0.7497 8.0299,0.7694 8.0718,0.7911 8.1125,0.8148 8.1521,0.8404 8.1904,0.8678 8.2274,0.8969 8.2630,0.9278 8.2971,0.9603 8.3296,0.9944 8.3605,1.0300 8.3897,1.0670 8.4171,1.1054 8.4426,1.1449 8.4663,1.1857 8.4880,1.2275 8.5078,1.2703 8.5254,1.3140 8.5411,1.3584 8.5546,1.4036 8.5659,1.4493 8.5751,1.4955 8.5821,1.5421 8.5869,1.5890 8.5895,1.6360 8.5899,1.6831 8.5880,1.7302 8.5840,1.7772 8.5777,1.8239 8.5692,1.8702 8.5586,1.9161 8.5458,1.9615 8.5309,2.0062 8.5139,2.0501 8.4948,2.0932 8.4738,2.1354 8.4507,2.1765 8.4258,2.2165 8.3990,2.2552 8.3704,2.2927 8.3401,2.3288 8.3081,2.3634 8.2745,2.3964 8.2394,2.4278 8.2029,2.4576 8.1650,2.4856 8.1258,2.5118 8.0855,2.5361 8.0440,2.5584 8.0015,2.5788 7.9581,2.5972 7.9139,2.6135 7.8690,2.6277 7.8234,2.6398 7.7774,2.6497 7.7309,2.6575 7.6841,2.6630 7.6371,2.6663 7.59,2.6674"/></g><g stroke-width="0.0100" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.5" fill="rgb(5%, 5%, 5%)" fill-opacity="0.3"><path d="M 7.59,1.6674 L 6.59,1.6674 A 1.0 1.0 0 1 1 7.59,2.6674 L 7.59,1.6674"/></g><g stroke-width="0.0200" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.2" fill="none"><polyline points="8.6049,-1.3874 8.6029,-1.4502 8.5970,-1.5128 8.5872,-1.5748 8.5735,-1.6361 8.5559,-1.6965 8.5347,-1.7556 8.5097,-1.8132 8.4812,-1.8692 8.4492,-1.9233 8.4139,-1.9752 8.3754,-2.0249 8.3338,-2.0720 8.2894,-2.1164 8.2423,-2.1580 8.1927,-2.1965 8.1407,-2.2318 8.0866,-2.2637 8.0307,-2.2923 7.9730,-2.3172 7.9139,-2.3385 7.8536,-2.3560 7.7923,-2.3697 7.7302,-2.3796 7.6677,-2.3855 7.6049,-2.3874 7.5421,-2.3855 7.4795,-2.3796 7.4175,-2.3697 7.3562,-2.3560 7.2959,-2.3385 7.2368,-2.3172 7.1791,-2.2923 7.1231,-2.2637 7.0690,-2.2318 7.0171,-2.1965 6.9675,-2.1580 6.9203,-2.1164 6.8759,-2.0720 6.8344,-2.0249 6.7959,-1.9752 6.7605,-1.9233 6.7286,-1.8692 6.7000,-1.8132 6.6751,-1.7556 6.6538,-1.6965 6.6363,-1.6361 6.6226,-1.5748 6.6128,-1.5128 6.6068,-1.4502 6.6049,-1.3874 6.6068,-1.3246 6.6128,-1.2621 6.6226,-1.2001 6.6363,-1.1387 6.6538,-1.0784 6.6751,-1.0193 6.7000,-0.9617 6.7286,-0.9057 6.7605,-0.8516 6.7959,-0.7997 6.8344,-0.7500 6.8759,-0.7029 6.9203,-0.6585 6.9675,-0.6169 7.0171,-0.5784 7.0690,-0.5431 7.1231,-0.5111 7.1791,-0.4826 7.2368,-0.4577 7.2959,-0.4364 7.3562,-0.4189 7.4175,-0.4052 7.4795,-0.3953 7.5421,-0.3894 7.6049,-0.3874 7.6677,-0.3894 7.7302,-0.3953 7.7923,-0.4052 7.8536,-0.4189 7.9139,-0.4364 7.9730,-0.4577 8.0307,-0.4826 8.0866,-0.5111 8.1407,-0.5431 8.1927,-0.5784 8.2423,-0.6169 8.2894,-0.6585 8.3338,-0.7029 8.3754,-0.7500 8.4139,-0.7997 8.4492,-0.8516 8.4812,-0.9057 8.5097,-0.9617 8.5347,-1.0193 8.5559,-1.0784 8.5735,-1.1387 8.5872,-1.2001 8.5970,-1.2621 8.6029,-1.3246 8.6049,-1.3874"/></g><g stroke-width="0.0200" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.2" fill="none"><polyline points="7.6049,-0.3874 7.6029,-0.4502 7.5970,-0.5128 7.5872,-0.5748 7.5735,-0.6361 7.5559,-0.6965 7.5347,-0.7556 7.5097,-0.8132 7.4812,-0.8692 7.4492,-0.9233 7.4139,-0.9752 7.3754,-1.0249 7.3338,-1.0720 7.2894,-1.1164 7.2423,-1.1580 7.1927,-1.1965 7.1407,-1.2318 7.0866,-1.2637 7.0307,-1.2923 6.9730,-1.3172 6.9139,-1.3385 6.8536,-1.3560 6.7923,-1.3697 6.7302,-1.3796 6.6677,-1.3855 6.6049,-1.3874 6.5421,-1.3855 6.4795,-1.3796 6.4175,-1.3697 6.3562,-1.3560 6.2959,-1.3385 6.2368,-1.3172 6.1791,-1.2923 6.1231,-1.2637 6.0690,-1.2318 6.0171,-1.1965 5.9675,-1.1580 5.9203,-1.1164 5.8759,-1.0720 5.8344,-1.0249 5.7959,-0.9752 5.7605,-0.9233 5.7286,-0.8692 5.7000,-0.8132 5.6751,-0.7556 5.6538,-0.6965 5.6363,-0.6361 5.6226,-0.5748 5.6128,-0.5128 5.6068,-0.4502 5.6049,-0.3874 5.6068,-0.3246 5.6128,-0.2621 5.6226,-0.2001 5.6363,-0.1387 5.6538,-0.0784 5.6751,-0.0193 5.7000,0.0383 5.7286,0.0943 5.7605,0.1484 5.7959,0.2003 5.8344,0.2500 5.8759,0.2971 5.9203,0.3415 5.9675,0.3831 6.0171,0.4216 6.0690,0.4569 6.1231,0.4889 6.1791,0.5174 6.2368,0.5423 6.2959,0.5636 6.3562,0.5811 6.4175,0.5948 6.4795,0.6047 6.5421,0.6106 6.6049,0.6126 6.6677,0.6106 6.7302,0.6047 6.7923,0.5948 6.8536,0.5811 6.9139,0.5636 6.9730,0.5423 7.0307,0.5174 7.0866,0.4889 7.1407,0.4569 7.1927,0.4216 7.2423,0.3831 7.2894,0.3415 7.3338,0.2971 7.3754,0.2500 7.4139,0.2003 7.4492,0.1484 7.4812,0.0943 7.5097,0.0383 7.5347,-0.0193 7.5559,-0.0784 7.5735,-0.1387 7.5872,-0.2001 7.5970,-0.2621 7.6029,-0.3246 7.6049,-0.3874"/></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.5" fill="none"><polyline points="6.6049,-1.3874 6.5578,-1.3863 6.5108,-1.3830 6.4640,-1.3775 6.4175,-1.3697 6.3714,-1.3598 6.3259,-1.3477 6.2810,-1.3335 6.2368,-1.3172 6.1934,-1.2988 6.1509,-1.2784 6.1094,-1.2561 6.0690,-1.2318 6.0299,-1.2056 5.9920,-1.1776 5.9554,-1.1478 5.9203,-1.1164 5.8868,-1.0834 5.8548,-1.0488 5.8244,-1.0127 5.7959,-0.9752 5.7691,-0.9365 5.7441,-0.8965 5.7211,-0.8554 5.7000,-0.8132 5.6810,-0.7701 5.6640,-0.7262 5.6491,-0.6815 5.6363,-0.6361 5.6257,-0.5902 5.6172,-0.5439 5.6109,-0.4972 5.6068,-0.4502 5.6050,-0.4031 5.6054,-0.3560 5.6080,-0.3090 5.6128,-0.2621 5.6198,-0.2155 5.6290,-0.1693 5.6403,-0.1236 5.6538,-0.0784 5.6694,-0.0340 5.6871,0.0097 5.7068,0.0525 5.7286,0.0943 5.7522,0.1351 5.7778,0.1746 5.8052,0.2130 5.8344,0.2500 5.8652,0.2856 5.8978,0.3197 5.9319,0.3522 5.9675,0.3831 6.0045,0.4122 6.0428,0.4396 6.0824,0.4652 6.1231,0.4889 6.1649,0.5106 6.2077,0.5303 6.2514,0.5480 6.2959,0.5636 6.3410,0.5771 6.3867,0.5885 6.4329,0.5977 6.4795,0.6047 6.5264,0.6095 6.5735,0.6121 6.6206,0.6124 6.6677,0.6106 6.7146,0.6065 6.7613,0.6003 6.8077,0.5918 6.8536,0.5811 6.8989,0.5684 6.9436,0.5534 6.9876,0.5364 7.0307,0.5174 7.0728,0.4963 7.1139,0.4733 7.1539,0.4484 7.1927,0.4216 7.2301,0.3930 7.2662,0.3627 7.3008,0.3307 7.3338,0.2971 7.3653,0.2620 7.3950,0.2255 7.4230,0.1876 7.4492,0.1484 7.4735,0.1080 7.4959,0.0666 7.5163,0.0241 7.5347,-0.0193 7.5510,-0.0635 7.5652,-0.1084 7.5772,-0.1540 7.5872,-0.2001 7.5949,-0.2465 7.6004,-0.2933 7.6038,-0.3403 7.6049,-0.3874"/></g><g stroke-width="0.0100" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.5" fill="rgb(5%, 5%, 5%)" fill-opacity="0.3"><path d="M 7.6049,-1.3874 L 6.6049,-1.3874 A 1.0 1.0 0 1 0 7.6049,-0.3874 L 7.6049,-1.3874"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.4" text-anchor="middle"><text x="7.08" y="-3.3274">True</text></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.6" text-anchor="middle"><text x="5.5000" y="-4.3749">Large</text></g></g><g class="hud"></g></svg>
diff --git a/other/arrow.svg b/other/arrow.svg
--- a/other/arrow.svg
+++ b/other/arrow.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.75 -0.5 1.5 1.0" width="450" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="450" height="300" viewBox="-0.75 -0.5 1.5 1.0"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -35,7 +35,7 @@
     stroke: rgba(94%, 94%, 94%, 1.00);
   }
 }
-</style><g class="chart"><g class="arrow"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-41.7039, -0.5147, 0.3145)"><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.5147, 0.3145) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-40.7040, -0.5147, 0.2350)"><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.5147, 0.2350) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-39.3303, -0.5147, 0.1555)"><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.5147, 0.1555) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-37.3282, -0.5147, 0.0761)"><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.5147, 0.0761) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-34.1493, -0.5147, -0.0034)"><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.5147, -0.0034) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-28.3824, -0.5147, -0.0829)"><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.5147, -0.0829) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-15.2740, -0.5147, -0.1623)"><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.5147, -0.1623) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(24.9171, -0.5147, -0.2418)"><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.5147, -0.2418) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(85.2524, -0.5147, -0.3212)"><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.5147, -0.3212) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(107.4397, -0.5147, -0.4007)"><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.5147, -0.4007) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-46.8993, -0.3890, 0.3145)"><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.3890, 0.3145) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-45.4122, -0.3890, 0.2350)"><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.3890, 0.2350) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-43.2666, -0.3890, 0.1555)"><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.3890, 0.1555) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-39.9135, -0.3890, 0.0761)"><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.3890, 0.0761) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-33.9991, -0.3890, -0.0034)"><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.3890, -0.0034) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-21.3212, -0.3890, -0.0829)"><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.3890, -0.0829) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(13.3646, -0.3890, -0.1623)"><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.3890, -0.1623) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(70.2608, -0.3890, -0.2418)"><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.3890, -0.2418) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(96.0844, -0.3890, -0.3212)"><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.3890, -0.3212) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(106.0551, -0.3890, -0.4007)"><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.3890, -0.4007) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-53.3544, -0.2634, 0.3145)"><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.2634, 0.3145) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-51.2345, -0.2634, 0.2350)"><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.2634, 0.2350) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-48.0128, -0.2634, 0.1555)"><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.2634, 0.1555) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-42.5805, -0.2634, 0.0761)"><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.2634, 0.0761) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-31.8274, -0.2634, -0.0034)"><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.2634, -0.0034) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-5.4403, -0.2634, -0.0829)"><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.2634, -0.0829) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(47.1211, -0.2634, -0.1623)"><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.2634, -0.1623) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(80.5377, -0.2634, -0.2418)"><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.2634, -0.2418) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(93.7314, -0.2634, -0.3212)"><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.2634, -0.3212) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(100.0607, -0.2634, -0.4007)"><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.2634, -0.4007) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-61.4810, -0.1378, 0.3145)"><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.1378, 0.3145) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-58.6701, -0.1378, 0.2350)"><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.1378, 0.2350) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-54.1700, -0.1378, 0.1555)"><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.1378, 0.1555) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-45.9710, -0.1378, 0.0761)"><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.1378, 0.0761) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-27.9309, -0.1378, -0.0034)"><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.1378, -0.0034) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(14.4459, -0.1378, -0.0829)"><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.1378, -0.0829) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(58.9537, -0.1378, -0.1623)"><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.1378, -0.1623) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(78.3877, -0.1378, -0.2418)"><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.1378, -0.2418) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(87.0722, -0.1378, -0.3212)"><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.1378, -0.3212) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(91.7753, -0.1378, -0.4007)"><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.1378, -0.4007) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-71.6316, -0.0121, 0.3145)"><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.0121, 0.3145) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-68.3038, -0.0121, 0.2350)"><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.0121, 0.2350) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-62.7134, -0.0121, 0.1555)"><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.0121, 0.1555) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-51.7434, -0.0121, 0.0761)"><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.0121, 0.0761) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-25.4633, -0.0121, -0.0034)"><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.0121, -0.0034) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(25.3523, -0.0121, -0.0829)"><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.0121, -0.0829) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(58.5390, -0.0121, -0.1623)"><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.0121, -0.1623) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(72.0351, -0.0121, -0.2418)"><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.0121, -0.2418) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(78.5712, -0.0121, -0.3212)"><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.0121, -0.3212) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(82.3320, -0.0121, -0.4007)"><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.0121, -0.4007) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-83.7258, 0.1135, 0.3145)"><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.1135, 0.3145) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-80.3796, 0.1135, 0.2350)"><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.1135, 0.2350) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-74.5578, 0.1135, 0.1555)"><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.1135, 0.1555) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-62.3926, 0.1135, 0.0761)"><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.1135, 0.0761) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-30.3259, 0.1135, -0.0034)"><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.1135, -0.0034) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(25.4633, 0.1135, -0.0829)"><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.1135, -0.0829) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(53.3483, 0.1135, -0.1623)"><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.1135, -0.1623) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(64.1805, 0.1135, -0.2418)"><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.1135, -0.2418) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(69.5253, 0.1135, -0.3212)"><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.1135, -0.3212) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(72.6569, 0.1135, -0.4007)"><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.1135, -0.4007) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-96.8488, 0.2391, 0.3145)"><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.2391, 0.3145) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-94.1075, 0.2391, 0.2350)"><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.2391, 0.2350) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-89.3167, 0.2391, 0.1555)"><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.2391, 0.1555) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-79.0898, 0.2391, 0.0761)"><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.2391, 0.0761) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-48.8981, 0.2391, -0.0034)"><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.2391, -0.0034) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(16.4311, 0.2391, -0.0829)"><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.2391, -0.0829) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(45.9710, 0.2391, -0.1623)"><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.2391, -0.1623) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(56.0348, 0.2391, -0.2418)"><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.2391, -0.2418) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(60.7712, 0.2391, -0.3212)"><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.2391, -0.3212) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(63.4886, 0.2391, -0.4007)"><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.2391, -0.4007) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-109.4766, 0.3647, 0.3145)"><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.3647, 0.3145) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-107.6501, 0.3647, 0.2350)"><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.3647, 0.2350) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-104.5742, 0.3647, 0.1555)"><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.3647, 0.1555) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-98.3659, 0.3647, 0.0761)"><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.3647, 0.0761) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-80.5377, 0.3647, -0.0034)"><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.3647, -0.0034) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-10.3048, 0.3647, -0.0829)"><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.3647, -0.0829) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(36.3844, 0.3647, -0.1623)"><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.3647, -0.1623) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(48.0128, 0.3647, -0.2418)"><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.3647, -0.2418) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(52.7336, 0.3647, -0.3212)"><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.3647, -0.3212) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(55.2568, 0.3647, -0.4007)"><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.3647, -0.4007) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-120.3900, 0.4904, 0.3145)"><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.4904, 0.3145) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-119.3549, 0.4904, 0.2350)"><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.4904, 0.2350) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-117.7221, 0.4904, 0.1555)"><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.4904, 0.1555) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-114.7718, 0.4904, 0.0761)"><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.4904, 0.0761) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-107.9102, 0.4904, -0.0034)"><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.4904, -0.0034) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-78.8802, 0.4904, -0.0829)"><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.4904, -0.0829) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(18.0772, 0.4904, -0.1623)"><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.4904, -0.1623) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(39.5765, 0.4904, -0.2418)"><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.4904, -0.2418) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(45.4122, 0.4904, -0.3212)"><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.4904, -0.3212) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(48.0612, 0.4904, -0.4007)"><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.4904, -0.4007) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-129.2044, 0.6160, 0.3145)"><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.6160, 0.3145) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-128.6756, 0.6160, 0.2350)"><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.6160, 0.2350) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-127.8991, 0.6160, 0.1555)"><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.6160, 0.1555) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-126.6482, 0.6160, 0.0761)"><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.6160, 0.0761) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-124.3010, 0.6160, -0.0034)"><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.6160, -0.0034) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-118.3399, 0.6160, -0.0829)"><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.6160, -0.0829) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(-81.6027, 0.6160, -0.1623)"><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.6160, -0.1623) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(25.9167, 0.6160, -0.2418)"><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.6160, -0.2418) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(38.1539, 0.6160, -0.3212)"><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.6160, -0.3212) scale(0.0500)"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0500"><g transform="rotate(41.7039, 0.6160, -0.4007)"><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.6160, -0.4007) scale(0.0500)"/></g></g></g></g><g class="hud"><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.8502" width="1.2730" x="-0.5858" y="-0.4682"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><g transform="rotate(-90.0, -0.6110, 0.3542)"><polyline points="-0.6110,0.3692
+</style><g class="chart"><g class="arrow"><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-41.7039, -0.5147, 0.3145)"><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.5147, 0.3145) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-40.7040, -0.5147, 0.2350)"><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.5147, 0.2350) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-39.3303, -0.5147, 0.1555)"><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.5147, 0.1555) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-37.3282, -0.5147, 0.0761)"><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.5147, 0.0761) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-34.1493, -0.5147, -0.0034)"><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.5147, -0.0034) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-28.3824, -0.5147, -0.0829)"><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.5147, -0.0829) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-15.2740, -0.5147, -0.1623)"><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.5147, -0.1623) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(24.9171, -0.5147, -0.2418)"><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.5147, -0.2418) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(85.2524, -0.5147, -0.3212)"><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.5147, -0.3212) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(107.4397, -0.5147, -0.4007)"><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.5147, -0.4007) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-46.8993, -0.3890, 0.3145)"><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.3890, 0.3145) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-45.4122, -0.3890, 0.2350)"><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.3890, 0.2350) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-43.2666, -0.3890, 0.1555)"><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.3890, 0.1555) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-39.9135, -0.3890, 0.0761)"><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.3890, 0.0761) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-33.9991, -0.3890, -0.0034)"><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.3890, -0.0034) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-21.3212, -0.3890, -0.0829)"><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.3890, -0.0829) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(13.3646, -0.3890, -0.1623)"><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.3890, -0.1623) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(70.2608, -0.3890, -0.2418)"><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.3890, -0.2418) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(96.0844, -0.3890, -0.3212)"><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.3890, -0.3212) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(106.0551, -0.3890, -0.4007)"><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.3890, -0.4007) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-53.3544, -0.2634, 0.3145)"><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.2634, 0.3145) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-51.2345, -0.2634, 0.2350)"><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.2634, 0.2350) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-48.0128, -0.2634, 0.1555)"><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.2634, 0.1555) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-42.5805, -0.2634, 0.0761)"><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.2634, 0.0761) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-31.8274, -0.2634, -0.0034)"><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.2634, -0.0034) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-5.4403, -0.2634, -0.0829)"><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.2634, -0.0829) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(47.1211, -0.2634, -0.1623)"><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.2634, -0.1623) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(80.5377, -0.2634, -0.2418)"><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.2634, -0.2418) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(93.7314, -0.2634, -0.3212)"><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.2634, -0.3212) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(100.0607, -0.2634, -0.4007)"><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.2634, -0.4007) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-61.4810, -0.1378, 0.3145)"><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.1378, 0.3145) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-58.6701, -0.1378, 0.2350)"><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.1378, 0.2350) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-54.1700, -0.1378, 0.1555)"><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.1378, 0.1555) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-45.9710, -0.1378, 0.0761)"><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.1378, 0.0761) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-27.9309, -0.1378, -0.0034)"><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.1378, -0.0034) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(14.4459, -0.1378, -0.0829)"><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.1378, -0.0829) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(58.9537, -0.1378, -0.1623)"><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.1378, -0.1623) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(78.3877, -0.1378, -0.2418)"><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.1378, -0.2418) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(87.0722, -0.1378, -0.3212)"><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.1378, -0.3212) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(91.7753, -0.1378, -0.4007)"><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.1378, -0.4007) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-71.6316, -0.0121, 0.3145)"><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.0121, 0.3145) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-68.3038, -0.0121, 0.2350)"><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.0121, 0.2350) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-62.7134, -0.0121, 0.1555)"><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.0121, 0.1555) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-51.7434, -0.0121, 0.0761)"><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.0121, 0.0761) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-25.4633, -0.0121, -0.0034)"><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.0121, -0.0034) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(25.3523, -0.0121, -0.0829)"><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.0121, -0.0829) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(58.5390, -0.0121, -0.1623)"><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.0121, -0.1623) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(72.0351, -0.0121, -0.2418)"><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.0121, -0.2418) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(78.5712, -0.0121, -0.3212)"><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.0121, -0.3212) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(82.3320, -0.0121, -0.4007)"><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.0121, -0.4007) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-83.7258, 0.1135, 0.3145)"><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.1135, 0.3145) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-80.3796, 0.1135, 0.2350)"><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.1135, 0.2350) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-74.5578, 0.1135, 0.1555)"><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.1135, 0.1555) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-62.3926, 0.1135, 0.0761)"><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.1135, 0.0761) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-30.3259, 0.1135, -0.0034)"><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.1135, -0.0034) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(25.4633, 0.1135, -0.0829)"><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.1135, -0.0829) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(53.3483, 0.1135, -0.1623)"><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.1135, -0.1623) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(64.1805, 0.1135, -0.2418)"><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.1135, -0.2418) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(69.5253, 0.1135, -0.3212)"><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.1135, -0.3212) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(72.6569, 0.1135, -0.4007)"><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.1135, -0.4007) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-96.8488, 0.2391, 0.3145)"><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.2391, 0.3145) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-94.1075, 0.2391, 0.2350)"><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.2391, 0.2350) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-89.3167, 0.2391, 0.1555)"><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.2391, 0.1555) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-79.0898, 0.2391, 0.0761)"><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.2391, 0.0761) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-48.8981, 0.2391, -0.0034)"><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.2391, -0.0034) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(16.4311, 0.2391, -0.0829)"><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.2391, -0.0829) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(45.9710, 0.2391, -0.1623)"><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.2391, -0.1623) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(56.0348, 0.2391, -0.2418)"><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.2391, -0.2418) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(60.7712, 0.2391, -0.3212)"><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.2391, -0.3212) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(63.4886, 0.2391, -0.4007)"><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.2391, -0.4007) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-109.4766, 0.3647, 0.3145)"><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.3647, 0.3145) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-107.6501, 0.3647, 0.2350)"><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.3647, 0.2350) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-104.5742, 0.3647, 0.1555)"><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.3647, 0.1555) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-98.3659, 0.3647, 0.0761)"><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.3647, 0.0761) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-80.5377, 0.3647, -0.0034)"><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.3647, -0.0034) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-10.3048, 0.3647, -0.0829)"><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.3647, -0.0829) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(36.3844, 0.3647, -0.1623)"><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.3647, -0.1623) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(48.0128, 0.3647, -0.2418)"><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.3647, -0.2418) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(52.7336, 0.3647, -0.3212)"><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.3647, -0.3212) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(55.2568, 0.3647, -0.4007)"><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.3647, -0.4007) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-120.3900, 0.4904, 0.3145)"><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.4904, 0.3145) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-119.3549, 0.4904, 0.2350)"><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.4904, 0.2350) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-117.7221, 0.4904, 0.1555)"><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.4904, 0.1555) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-114.7718, 0.4904, 0.0761)"><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.4904, 0.0761) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-107.9102, 0.4904, -0.0034)"><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.4904, -0.0034) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-78.8802, 0.4904, -0.0829)"><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.4904, -0.0829) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(18.0772, 0.4904, -0.1623)"><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.4904, -0.1623) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(39.5765, 0.4904, -0.2418)"><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.4904, -0.2418) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(45.4122, 0.4904, -0.3212)"><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.4904, -0.3212) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(48.0612, 0.4904, -0.4007)"><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.4904, -0.4007) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-129.2044, 0.6160, 0.3145)"><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.6160, 0.3145) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-128.6756, 0.6160, 0.2350)"><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.6160, 0.2350) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-127.8991, 0.6160, 0.1555)"><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.6160, 0.1555) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-126.6482, 0.6160, 0.0761)"><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.6160, 0.0761) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-124.3010, 0.6160, -0.0034)"><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.6160, -0.0034) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-118.3399, 0.6160, -0.0829)"><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.6160, -0.0829) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(-81.6027, 0.6160, -0.1623)"><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.6160, -0.1623) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(25.9167, 0.6160, -0.2418)"><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.6160, -0.2418) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(38.1539, 0.6160, -0.3212)"><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.6160, -0.3212) scale(0.0500)"/></g></g><g stroke-width="0.0500" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><g transform="rotate(41.7039, 0.6160, -0.4007)"><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.6160, -0.4007) scale(0.0500)"/></g></g></g></g><g class="hud"><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.2730" height="0.8502" x="-0.5858" y="-0.4682"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><g transform="rotate(-90.0, -0.6110, 0.3542)"><polyline points="-0.6110,0.3692
 -0.6110,0.3392"/></g><g transform="rotate(-90.0, -0.6110, 0.2747)"><polyline points="-0.6110,0.2897
 -0.6110,0.2597"/></g><g transform="rotate(-90.0, -0.6110, 0.1953)"><polyline points="-0.6110,0.2103
 -0.6110,0.1803"/></g><g transform="rotate(-90.0, -0.6110, 0.1158)"><polyline points="-0.6110,0.1308
@@ -46,7 +46,7 @@
 -0.6110,-0.2170"/></g><g transform="rotate(-90.0, -0.6110, -0.2815)"><polyline points="-0.6110,-0.2665
 -0.6110,-0.2965"/></g><g transform="rotate(-90.0, -0.6110, -0.3610)"><polyline points="-0.6110,-0.3460
 -0.6110,-0.3760"/></g><g transform="rotate(-90.0, -0.6110, -0.4404)"><polyline points="-0.6110,-0.4254
--0.6110,-0.4554"/></g></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0419" stroke="none" stroke-width="0.0" text-anchor="end"><text x="-0.6411" y="0.3651">-0.5</text><text x="-0.6411" y="0.2857">-0.4</text><text x="-0.6411" y="0.2062">-0.3</text><text x="-0.6411" y="0.1267">-0.2</text><text x="-0.6411" y="0.0473">-0.1</text><text x="-0.6411" y="-0.0322"> 0.0</text><text x="-0.6411" y="-0.1117"> 0.1</text><text x="-0.6411" y="-0.1911"> 0.2</text><text x="-0.6411" y="-0.2706"> 0.3</text><text x="-0.6411" y="-0.3500"> 0.4</text><text x="-0.6411" y="-0.4295"> 0.5</text></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.7978" width="0.0034" x="-0.5976" y="-0.4420"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.5775,0.4208
+-0.6110,-0.4554"/></g></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0419" text-anchor="end"><text x="-0.6411" y="0.3651">-0.5</text><text x="-0.6411" y="0.2857">-0.4</text><text x="-0.6411" y="0.2062">-0.3</text><text x="-0.6411" y="0.1267">-0.2</text><text x="-0.6411" y="0.0473">-0.1</text><text x="-0.6411" y="-0.0322"> 0.0</text><text x="-0.6411" y="-0.1117"> 0.1</text><text x="-0.6411" y="-0.1911"> 0.2</text><text x="-0.6411" y="-0.2706"> 0.3</text><text x="-0.6411" y="-0.3500"> 0.4</text><text x="-0.6411" y="-0.4295"> 0.5</text></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.0034" height="0.7978" x="-0.5976" y="-0.4420"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.5775,0.4208
 -0.5775,0.3908"/><polyline points="-0.4518,0.4208
 -0.4518,0.3908"/><polyline points="-0.3262,0.4208
 -0.3262,0.3908"/><polyline points="-0.2006,0.4208
@@ -57,4 +57,4 @@
 0.3019,0.3908"/><polyline points="0.4276,0.4208
 0.4276,0.3908"/><polyline points="0.5532,0.4208
 0.5532,0.3908"/><polyline points="0.6788,0.4208
-0.6788,0.3908"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0419" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.5775" y="0.4563">-0.5</text><text x="-0.4518" y="0.4563">-0.4</text><text x="-0.3262" y="0.4563">-0.3</text><text x="-0.2006" y="0.4563">-0.2</text><text x="-0.0750" y="0.4563">-0.1</text><text x="0.0507" y="0.4563"> 0.0</text><text x="0.1763" y="0.4563"> 0.1</text><text x="0.3019" y="0.4563"> 0.2</text><text x="0.4276" y="0.4563"> 0.3</text><text x="0.5532" y="0.4563"> 0.4</text><text x="0.6788" y="0.4563"> 0.5</text></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0032" width="1.2596" x="-0.5791" y="0.3899"/></g></g></g><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="1.0" width="1.5" x="-0.75" y="-0.5"/></g></g></g></svg>
+0.6788,0.3908"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0419" text-anchor="middle"><text x="-0.5775" y="0.4563">-0.5</text><text x="-0.4518" y="0.4563">-0.4</text><text x="-0.3262" y="0.4563">-0.3</text><text x="-0.2006" y="0.4563">-0.2</text><text x="-0.0750" y="0.4563">-0.1</text><text x="0.0507" y="0.4563"> 0.0</text><text x="0.1763" y="0.4563"> 0.1</text><text x="0.3019" y="0.4563"> 0.2</text><text x="0.4276" y="0.4563"> 0.3</text><text x="0.5532" y="0.4563"> 0.4</text><text x="0.6788" y="0.4563"> 0.5</text></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="1.2596" height="0.0032" x="-0.5791" y="0.3899"/></g></g></g><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.5" height="1.0" x="-0.75" y="-0.5"/></g></g></g></svg>
diff --git a/other/bar.svg b/other/bar.svg
--- a/other/bar.svg
+++ b/other/bar.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.7427 -0.4932 1.4927 0.9682" width="462" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="462" height="300" viewBox="-0.7427 -0.4932 1.4927 0.9682"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,7 +22,7 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"><g class="barchart"><g fill="rgb(2%, 29%, 48%)" fill-opacity="0.7" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0050"><rect height="0.0539" width="0.0516" x="-0.7119" y="0.0913"/><rect height="0.1078" width="0.0516" x="-0.5972" y="0.0374"/><rect height="0.1616" width="0.0516" x="-0.4825" y="-0.0164"/><rect height="0.2694" width="0.0516" x="-0.3679" y="-0.1242"/><rect height="0.4310" width="0.0516" x="-0.2532" y="-0.2859"/><rect height="0" width="0.0516" x="-0.1385" y="0.1452"/><rect height="0.1078" width="0.0516" x="-0.0238" y="0.1452"/><rect height="0.5927" width="0.0516" x="0.0909" y="-0.4475"/><rect height="0.1078" width="0.0516" x="0.2055" y="0.0374"/><rect height="0.0539" width="0.0516" x="0.3202" y="0.0913"/></g><g fill="rgb(66%, 7%, 55%)" fill-opacity="0.7" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" stroke-width="0.0050"><rect height="0.0539" width="0.0516" x="-0.6603" y="0.0913"/><rect height="0.1078" width="0.0516" x="-0.5456" y="0.0374"/><rect height="0.1616" width="0.0516" x="-0.4309" y="-0.0164"/><rect height="0.2155" width="0.0516" x="-0.3163" y="-0.0703"/><rect height="0.2694" width="0.0516" x="-0.2016" y="-0.1242"/><rect height="0.3233" width="0.0516" x="-0.0869" y="-0.1781"/><rect height="0.3772" width="0.0516" x="0.0278" y="-0.2320"/><rect height="0.4310" width="0.0516" x="0.1425" y="-0.2859"/><rect height="0.4849" width="0.0516" x="0.2572" y="-0.3397"/><rect height="0.5388" width="0.0516" x="0.3718" y="-0.3936"/></g><g fill="rgb(2%, 29%, 48%)" fill-opacity="1.0" font-size="0.0275" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.6861" y="0.0676">1.0</text><text x="-0.5714" y="0.0137">2.0</text><text x="-0.4567" y="-0.0402">3.0</text><text x="-0.3421" y="-0.1479">5.0</text><text x="-0.2274" y="-0.3096">8.0</text><text x="-0.1127" y="0.1215">0.0</text><text x="0.0020" y="0.3122">-2.0</text><text x="0.1167" y="-0.4712">11</text><text x="0.2314" y="0.0137">2.0</text><text x="0.3460" y="0.0676">1.0</text></g><g fill="rgb(66%, 7%, 55%)" fill-opacity="1.0" font-size="0.0275" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.6345" y="0.0676">1.0</text><text x="-0.5198" y="0.0137">2.0</text><text x="-0.4051" y="-0.0402">3.0</text><text x="-0.2904" y="-0.0940">4.0</text><text x="-0.1758" y="-0.1479">5.0</text><text x="-0.0611" y="-0.2018">6.0</text><text x="0.0536" y="-0.2557">7.0</text><text x="0.1683" y="-0.3096">8.0</text><text x="0.2830" y="-0.3634">9.0</text><text x="0.3976" y="-0.4173">10</text></g></g></g><g class="hud"><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.6603,0.3592
+}</style><g class="chart"><g class="barchart"><g stroke-width="0.0050" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 29%, 48%)" fill-opacity="0.7"><rect width="0.0516" height="0.0539" x="-0.7119" y="0.0913"/><rect width="0.0516" height="0.1078" x="-0.5972" y="0.0374"/><rect width="0.0516" height="0.1616" x="-0.4825" y="-0.0164"/><rect width="0.0516" height="0.2694" x="-0.3679" y="-0.1242"/><rect width="0.0516" height="0.4310" x="-0.2532" y="-0.2859"/><rect width="0.0516" height="0" x="-0.1385" y="0.1452"/><rect width="0.0516" height="0.1078" x="-0.0238" y="0.1452"/><rect width="0.0516" height="0.5927" x="0.0909" y="-0.4475"/><rect width="0.0516" height="0.1078" x="0.2055" y="0.0374"/><rect width="0.0516" height="0.0539" x="0.3202" y="0.0913"/></g><g stroke-width="0.0050" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" fill="rgb(66%, 7%, 55%)" fill-opacity="0.7"><rect width="0.0516" height="0.0539" x="-0.6603" y="0.0913"/><rect width="0.0516" height="0.1078" x="-0.5456" y="0.0374"/><rect width="0.0516" height="0.1616" x="-0.4309" y="-0.0164"/><rect width="0.0516" height="0.2155" x="-0.3163" y="-0.0703"/><rect width="0.0516" height="0.2694" x="-0.2016" y="-0.1242"/><rect width="0.0516" height="0.3233" x="-0.0869" y="-0.1781"/><rect width="0.0516" height="0.3772" x="0.0278" y="-0.2320"/><rect width="0.0516" height="0.4310" x="0.1425" y="-0.2859"/><rect width="0.0516" height="0.4849" x="0.2572" y="-0.3397"/><rect width="0.0516" height="0.5388" x="0.3718" y="-0.3936"/></g><g stroke-width="0.0" stroke="none" fill="rgb(2%, 29%, 48%)" fill-opacity="1.0" font-size="0.0275" text-anchor="middle"><text x="-0.6861" y="0.0676">1.0</text><text x="-0.5714" y="0.0137">2.0</text><text x="-0.4567" y="-0.0402">3.0</text><text x="-0.3421" y="-0.1479">5.0</text><text x="-0.2274" y="-0.3096">8.0</text><text x="-0.1127" y="0.1215">0.0</text><text x="0.0020" y="0.3122">-2.0</text><text x="0.1167" y="-0.4712">11</text><text x="0.2314" y="0.0137">2.0</text><text x="0.3460" y="0.0676">1.0</text></g><g stroke-width="0.0" stroke="none" fill="rgb(66%, 7%, 55%)" fill-opacity="1.0" font-size="0.0275" text-anchor="middle"><text x="-0.6345" y="0.0676">1.0</text><text x="-0.5198" y="0.0137">2.0</text><text x="-0.4051" y="-0.0402">3.0</text><text x="-0.2904" y="-0.0940">4.0</text><text x="-0.1758" y="-0.1479">5.0</text><text x="-0.0611" y="-0.2018">6.0</text><text x="0.0536" y="-0.2557">7.0</text><text x="0.1683" y="-0.3096">8.0</text><text x="0.2830" y="-0.3634">9.0</text><text x="0.3976" y="-0.4173">10</text></g></g></g><g class="hud"><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.6603,0.3592
 -0.6603,0.3292"/><polyline points="-0.5456,0.3592
 -0.5456,0.3292"/><polyline points="-0.4309,0.3592
 -0.4309,0.3292"/><polyline points="-0.3163,0.3592
@@ -32,4 +32,4 @@
 0.0278,0.3292"/><polyline points="0.1425,0.3592
 0.1425,0.3292"/><polyline points="0.2572,0.3592
 0.2572,0.3292"/><polyline points="0.3718,0.3592
-0.3718,0.3292"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0382" stroke="none" stroke-width="0.0" text-anchor="end"><text transform="rotate(-45.0, -0.6603, 0.3939)" x="-0.6603" y="0.3939">row 1</text><text transform="rotate(-45.0, -0.5456, 0.3939)" x="-0.5456" y="0.3939">row 2</text><text transform="rotate(-45.0, -0.4309, 0.3939)" x="-0.4309" y="0.3939">row 3</text><text transform="rotate(-45.0, -0.3163, 0.3939)" x="-0.3163" y="0.3939">row 4</text><text transform="rotate(-45.0, -0.2016, 0.3939)" x="-0.2016" y="0.3939">row 5</text><text transform="rotate(-45.0, -0.0869, 0.3939)" x="-0.0869" y="0.3939">row 6</text><text transform="rotate(-45.0, 0.0278, 0.3939)" x="0.0278" y="0.3939">row 7</text><text transform="rotate(-45.0, 0.1425, 0.3939)" x="0.1425" y="0.3939">row 8</text><text transform="rotate(-45.0, 0.2572, 0.3939)" x="0.2572" y="0.3939">row 9</text><text transform="rotate(-45.0, 0.3718, 0.3939)" x="0.3718" y="0.3939">row 10</text></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0031" width="1.1499" x="-0.7192" y="0.3285"/></g></g></g><g class="legend"><g class="legendBorder"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0025"><rect height="0.1782" width="0.2581" x="0.4880" y="-0.1371"/></g></g><g class="legendContent"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0344" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.5072" y="0.0004">column 2</text></g><g fill="rgb(66%, 7%, 55%)" fill-opacity="0.7" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" stroke-width="0.0012"><rect height="0.0588" width="0.0573" x="0.6692" y="-0.0377"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0344" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.5072" y="-0.0789">column 1</text></g><g fill="rgb(2%, 29%, 48%)" fill-opacity="0.7" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0012"><rect height="0.0588" width="0.0573" x="0.6692" y="-0.1171"/></g></g></g></g></svg>
+0.3718,0.3292"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0382" text-anchor="end"><text x="-0.6603" y="0.3939" transform="rotate(-45.0, -0.6603, 0.3939)">row 1</text><text x="-0.5456" y="0.3939" transform="rotate(-45.0, -0.5456, 0.3939)">row 2</text><text x="-0.4309" y="0.3939" transform="rotate(-45.0, -0.4309, 0.3939)">row 3</text><text x="-0.3163" y="0.3939" transform="rotate(-45.0, -0.3163, 0.3939)">row 4</text><text x="-0.2016" y="0.3939" transform="rotate(-45.0, -0.2016, 0.3939)">row 5</text><text x="-0.0869" y="0.3939" transform="rotate(-45.0, -0.0869, 0.3939)">row 6</text><text x="0.0278" y="0.3939" transform="rotate(-45.0, 0.0278, 0.3939)">row 7</text><text x="0.1425" y="0.3939" transform="rotate(-45.0, 0.1425, 0.3939)">row 8</text><text x="0.2572" y="0.3939" transform="rotate(-45.0, 0.2572, 0.3939)">row 9</text><text x="0.3718" y="0.3939" transform="rotate(-45.0, 0.3718, 0.3939)">row 10</text></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="1.1499" height="0.0031" x="-0.7192" y="0.3285"/></g></g></g><g class="legend"><g class="legendBorder"><g stroke-width="0.0025" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(5%, 5%, 5%)" fill-opacity="0"><rect width="0.2581" height="0.1782" x="0.4880" y="-0.1371"/></g></g><g class="legendContent"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0344" text-anchor="start"><text x="0.5072" y="0.0004">column 2</text></g><g stroke-width="0.0012" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" fill="rgb(66%, 7%, 55%)" fill-opacity="0.7"><rect width="0.0573" height="0.0588" x="0.6692" y="-0.0377"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0344" text-anchor="start"><text x="0.5072" y="-0.0789">column 1</text></g><g stroke-width="0.0012" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 29%, 48%)" fill-opacity="0.7"><rect width="0.0573" height="0.0588" x="0.6692" y="-0.1171"/></g></g></g></g></svg>
diff --git a/other/cubic.svg b/other/cubic.svg
--- a/other/cubic.svg
+++ b/other/cubic.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.75 -0.4791 1.5 0.9791" width="459" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="459" height="300" viewBox="-0.75 -0.4791 1.5 0.9791"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,4 +22,4 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"><g class="cubic"><g fill="rgb(96%, 60%, 92%)" fill-opacity="0.2" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0.0100"><path d="M -0.7335,0.4835 C 0.2768,0.4835 -0.7335,-0.3675 0.2768,-0.3675"/></g><g fill="none" stroke="rgb(53%, 51%, 28%)" stroke-opacity="1.0" stroke-width="0.0020"><polyline points="-0.7335,0.4835 -0.7038,0.4832 -0.6753,0.4825 -0.6479,0.4812 -0.6217,0.4795 -0.5966,0.4773 -0.5726,0.4747 -0.5496,0.4716 -0.5277,0.4680 -0.5069,0.4641 -0.4870,0.4597 -0.4681,0.4549 -0.4501,0.4497 -0.4330,0.4441 -0.4169,0.4381 -0.4016,0.4318 -0.3872,0.4251 -0.3736,0.4181 -0.3608,0.4107 -0.3487,0.4030 -0.3375,0.3950 -0.3269,0.3867 -0.3171,0.3781 -0.3079,0.3692 -0.2994,0.3600 -0.2915,0.3505 -0.2842,0.3408 -0.2775,0.3309 -0.2714,0.3207 -0.2658,0.3103 -0.2607,0.2997 -0.2561,0.2889 -0.2519,0.2778 -0.2482,0.2666 -0.2449,0.2553 -0.2420,0.2437 -0.2394,0.2320 -0.2372,0.2202 -0.2353,0.2082 -0.2337,0.1962 -0.2324,0.1839 -0.2313,0.1716 -0.2304,0.1593 -0.2297,0.1468 -0.2292,0.1342 -0.2288,0.1216 -0.2286,0.1090 -0.2284,0.0963 -0.2284,0.0835 -0.2283,0.0708 -0.2283,0.0580 -0.2283,0.0452 -0.2283,0.0325 -0.2282,0.0198 -0.2281,0.0071 -0.2278,-0.0056 -0.2275,-0.0182 -0.2269,-0.0308 -0.2263,-0.0432 -0.2254,-0.0556 -0.2243,-0.0679 -0.2230,-0.0801 -0.2214,-0.0922 -0.2195,-0.1042 -0.2172,-0.1160 -0.2147,-0.1277 -0.2118,-0.1393 -0.2085,-0.1506 -0.2048,-0.1618 -0.2006,-0.1729 -0.1960,-0.1837 -0.1909,-0.1943 -0.1853,-0.2047 -0.1792,-0.2149 -0.1725,-0.2248 -0.1652,-0.2345 -0.1573,-0.2440 -0.1488,-0.2532 -0.1396,-0.2621 -0.1298,-0.2707 -0.1192,-0.2790 -0.1079,-0.2870 -0.0959,-0.2947 -0.0831,-0.3021 -0.0695,-0.3091 -0.0551,-0.3158 -0.0398,-0.3221 -0.0236,-0.3281 -0.0066,-0.3337 0.0114,-0.3389 0.0303,-0.3437 0.0502,-0.3481 0.0711,-0.3520 0.0930,-0.3556 0.1159,-0.3587 0.1399,-0.3613 0.1650,-0.3635 0.1912,-0.3652 0.2186,-0.3665 0.2471,-0.3672 0.2768,-0.3675"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><rect height="0.0300" width="0.0300" x="-0.7485" y="0.4685"/><rect height="0.0300" width="0.0300" x="0.2618" y="-0.3825"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.2768" cy="0.4835" r="0.0150"/><circle cx="-0.7335" cy="-0.3675" r="0.0150"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(40%, 40%, 40%)" stroke-opacity="1.0" stroke-width="0.0020"><rect height="0.8510" width="1.0103" x="-0.7335" y="-0.3675"/></g></g></g><g class="hud"><g class="legend"><g class="legendBorder"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0025"><rect height="0.3879" width="0.4082" x="0.3385" y="-0.2852"/></g></g><g class="legendContent"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0337" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3553" y="0.0686">Bounding Box</text></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(40%, 40%, 40%)" stroke-opacity="1.0" stroke-width="0.0025"><rect height="0.0425" width="0.0337" x="0.6618" y="0.0367"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0337" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3553" y="0.0006">Path Control Point</text></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.6786" cy="-0.0101" r="0.0250"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0337" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3553" y="-0.0675">Path Endpoints</text></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><rect height="0.0500" width="0.0500" x="0.6536" y="-0.1032"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0337" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3553" y="-0.1356">Path Chord</text></g><g fill="none" stroke="rgb(53%, 51%, 28%)" stroke-opacity="1.0" stroke-width="0.0020"><polyline points="0.6618,-0.1462 0.7291,-0.1462"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0337" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3553" y="-0.2037">Path Fill</text></g><g fill="rgb(96%, 60%, 92%)" fill-opacity="0.2" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0.0500"><path d="M 0.6618,-0.2001 Q 0.7291,-0.1576 0.6954,-0.2427"/></g></g></g><g class="title"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0539" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="0.0027" y="-0.4360">CubicPosition (Point 0 0) (Point 1 1) (Point 1 0) (Point 0 1)</text></g></g></g></svg>
+}</style><g class="chart"><g class="cubic"><g stroke-width="0.0100" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(96%, 60%, 92%)" fill-opacity="0.2"><path d="M -0.7335,0.4835 C 0.2768,0.4835 -0.7335,-0.3675 0.2768,-0.3675"/></g><g stroke-width="0.0020" stroke="rgb(53%, 51%, 28%)" stroke-opacity="1.0" fill="none"><polyline points="-0.7335,0.4835 -0.7038,0.4832 -0.6753,0.4825 -0.6479,0.4812 -0.6217,0.4795 -0.5966,0.4773 -0.5726,0.4747 -0.5496,0.4716 -0.5277,0.4680 -0.5069,0.4641 -0.4870,0.4597 -0.4681,0.4549 -0.4501,0.4497 -0.4330,0.4441 -0.4169,0.4381 -0.4016,0.4318 -0.3872,0.4251 -0.3736,0.4181 -0.3608,0.4107 -0.3487,0.4030 -0.3375,0.3950 -0.3269,0.3867 -0.3171,0.3781 -0.3079,0.3692 -0.2994,0.3600 -0.2915,0.3505 -0.2842,0.3408 -0.2775,0.3309 -0.2714,0.3207 -0.2658,0.3103 -0.2607,0.2997 -0.2561,0.2889 -0.2519,0.2778 -0.2482,0.2666 -0.2449,0.2553 -0.2420,0.2437 -0.2394,0.2320 -0.2372,0.2202 -0.2353,0.2082 -0.2337,0.1962 -0.2324,0.1839 -0.2313,0.1716 -0.2304,0.1593 -0.2297,0.1468 -0.2292,0.1342 -0.2288,0.1216 -0.2286,0.1090 -0.2284,0.0963 -0.2284,0.0835 -0.2283,0.0708 -0.2283,0.0580 -0.2283,0.0452 -0.2283,0.0325 -0.2282,0.0198 -0.2281,0.0071 -0.2278,-0.0056 -0.2275,-0.0182 -0.2269,-0.0308 -0.2263,-0.0432 -0.2254,-0.0556 -0.2243,-0.0679 -0.2230,-0.0801 -0.2214,-0.0922 -0.2195,-0.1042 -0.2172,-0.1160 -0.2147,-0.1277 -0.2118,-0.1393 -0.2085,-0.1506 -0.2048,-0.1618 -0.2006,-0.1729 -0.1960,-0.1837 -0.1909,-0.1943 -0.1853,-0.2047 -0.1792,-0.2149 -0.1725,-0.2248 -0.1652,-0.2345 -0.1573,-0.2440 -0.1488,-0.2532 -0.1396,-0.2621 -0.1298,-0.2707 -0.1192,-0.2790 -0.1079,-0.2870 -0.0959,-0.2947 -0.0831,-0.3021 -0.0695,-0.3091 -0.0551,-0.3158 -0.0398,-0.3221 -0.0236,-0.3281 -0.0066,-0.3337 0.0114,-0.3389 0.0303,-0.3437 0.0502,-0.3481 0.0711,-0.3520 0.0930,-0.3556 0.1159,-0.3587 0.1399,-0.3613 0.1650,-0.3635 0.1912,-0.3652 0.2186,-0.3665 0.2471,-0.3672 0.2768,-0.3675"/></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><rect width="0.0300" height="0.0300" x="-0.7485" y="0.4685"/><rect width="0.0300" height="0.0300" x="0.2618" y="-0.3825"/></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="0.2768" cy="0.4835" r="0.0150"/><circle cx="-0.7335" cy="-0.3675" r="0.0150"/></g><g stroke-width="0.0020" stroke="rgb(40%, 40%, 40%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="1.0103" height="0.8510" x="-0.7335" y="-0.3675"/></g></g></g><g class="hud"><g class="legend"><g class="legendBorder"><g stroke-width="0.0025" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(5%, 5%, 5%)" fill-opacity="0"><rect width="0.4082" height="0.3879" x="0.3385" y="-0.2852"/></g></g><g class="legendContent"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0337" text-anchor="start"><text x="0.3553" y="0.0686">Bounding Box</text></g><g stroke-width="0.0025" stroke="rgb(40%, 40%, 40%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0337" height="0.0425" x="0.6618" y="0.0367"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0337" text-anchor="start"><text x="0.3553" y="0.0006">Path Control Point</text></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="0.6786" cy="-0.0101" r="0.0250"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0337" text-anchor="start"><text x="0.3553" y="-0.0675">Path Endpoints</text></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><rect width="0.0500" height="0.0500" x="0.6536" y="-0.1032"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0337" text-anchor="start"><text x="0.3553" y="-0.1356">Path Chord</text></g><g stroke-width="0.0020" stroke="rgb(53%, 51%, 28%)" stroke-opacity="1.0" fill="none"><polyline points="0.6618,-0.1462 0.7291,-0.1462"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0337" text-anchor="start"><text x="0.3553" y="-0.2037">Path Fill</text></g><g stroke-width="0.0500" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(96%, 60%, 92%)" fill-opacity="0.2"><path d="M 0.6618,-0.2001 Q 0.7291,-0.1576 0.6954,-0.2427"/></g></g></g><g class="title"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0539" text-anchor="middle"><text x="0.0027" y="-0.4360">CubicPosition (Point 0 0) (Point 1 1) (Point 1 0) (Point 0 1)</text></g></g></g></svg>
diff --git a/other/date.svg b/other/date.svg
--- a/other/date.svg
+++ b/other/date.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.7364 -0.4984 1.4854 0.9856" width="452" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="452" height="300" viewBox="-0.7364 -0.4984 1.4854 0.9856"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,12 +22,12 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"/><g class="hud"><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.5795,0.3585
+}</style><g class="chart"></g><g class="hud"><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.5795,0.3585
 -0.5795,0.3285"/><polyline points="-0.2395,0.3585
 -0.2395,0.3285"/><polyline points="0.1821,0.3585
 0.1821,0.3285"/><polyline points="0.5628,0.3585
 0.5628,0.3285"/><polyline points="0.7396,0.3585
-0.7396,0.3285"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0440" stroke="none" stroke-width="0.0" text-anchor="end"><text transform="rotate(-45.0, -0.5795, 0.3939)" x="-0.5795" y="0.3939">06 Dec</text><text transform="rotate(-45.0, -0.2395, 0.3939)" x="-0.2395" y="0.3939">31 Dec</text><text transform="rotate(-45.0, 0.1821, 0.3939)" x="0.1821" y="0.3939">31 Jan</text><text transform="rotate(-45.0, 0.5628, 0.3939)" x="0.5628" y="0.3939">28 Feb</text><text transform="rotate(-45.0, 0.7396, 0.3939)" x="0.7396" y="0.3939">13 Mar</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.5795,0.3197 -0.5795,-0.4742"/><polyline points="-0.2395,0.3197 -0.2395,-0.4742"/><polyline points="0.1821,0.3197 0.1821,-0.4742"/><polyline points="0.5628,0.3197 0.5628,-0.4742"/><polyline points="0.7396,0.3197 0.7396,-0.4742"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0032" width="1.3226" x="-0.5812" y="0.3276"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><g transform="rotate(-90.0, -0.6058, 0.3197)"><polyline points="-0.6058,0.3347
+0.7396,0.3285"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0440" text-anchor="end"><text x="-0.5795" y="0.3939" transform="rotate(-45.0, -0.5795, 0.3939)">06 Dec</text><text x="-0.2395" y="0.3939" transform="rotate(-45.0, -0.2395, 0.3939)">31 Dec</text><text x="0.1821" y="0.3939" transform="rotate(-45.0, 0.1821, 0.3939)">31 Jan</text><text x="0.5628" y="0.3939" transform="rotate(-45.0, 0.5628, 0.3939)">28 Feb</text><text x="0.7396" y="0.3939" transform="rotate(-45.0, 0.7396, 0.3939)">13 Mar</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.5795,0.3197 -0.5795,-0.4742"/><polyline points="-0.2395,0.3197 -0.2395,-0.4742"/><polyline points="0.1821,0.3197 0.1821,-0.4742"/><polyline points="0.5628,0.3197 0.5628,-0.4742"/><polyline points="0.7396,0.3197 0.7396,-0.4742"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="1.3226" height="0.0032" x="-0.5812" y="0.3276"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><g transform="rotate(-90.0, -0.6058, 0.3197)"><polyline points="-0.6058,0.3347
 -0.6058,0.3047"/></g><g transform="rotate(-90.0, -0.6058, 0.2205)"><polyline points="-0.6058,0.2355
 -0.6058,0.2055"/></g><g transform="rotate(-90.0, -0.6058, 0.1212)"><polyline points="-0.6058,0.1362
 -0.6058,0.1062"/></g><g transform="rotate(-90.0, -0.6058, 0.0220)"><polyline points="-0.6058,0.0370
@@ -36,4 +36,4 @@
 -0.6058,-0.1915"/></g><g transform="rotate(-90.0, -0.6058, -0.2757)"><polyline points="-0.6058,-0.2607
 -0.6058,-0.2907"/></g><g transform="rotate(-90.0, -0.6058, -0.3749)"><polyline points="-0.6058,-0.3599
 -0.6058,-0.3899"/></g><g transform="rotate(-90.0, -0.6058, -0.4742)"><polyline points="-0.6058,-0.4592
--0.6058,-0.4892"/></g></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0440" stroke="none" stroke-width="0.0" text-anchor="end"><text x="-0.6375" y="0.3306">00:00</text><text x="-0.6375" y="0.2314">03:00</text><text x="-0.6375" y="0.1322">06:00</text><text x="-0.6375" y="0.0329">09:00</text><text x="-0.6375" y="-0.0663">12:00</text><text x="-0.6375" y="-0.1655">15:00</text><text x="-0.6375" y="-0.2648">18:00</text><text x="-0.6375" y="-0.3640">21:00</text><text x="-0.6375" y="-0.4632">00:00</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.5795,0.3197 0.7396,0.3197"/><polyline points="-0.5795,0.2205 0.7396,0.2205"/><polyline points="-0.5795,0.1212 0.7396,0.1212"/><polyline points="-0.5795,0.0220 0.7396,0.0220"/><polyline points="-0.5795,-0.0772 0.7396,-0.0772"/><polyline points="-0.5795,-0.1765 0.7396,-0.1765"/><polyline points="-0.5795,-0.2757 0.7396,-0.2757"/><polyline points="-0.5795,-0.3749 0.7396,-0.3749"/><polyline points="-0.5795,-0.4742 0.7396,-0.4742"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.7970" width="0.0035" x="-0.5918" y="-0.4758"/></g></g></g></g></svg>
+-0.6058,-0.4892"/></g></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0440" text-anchor="end"><text x="-0.6375" y="0.3306">00:00</text><text x="-0.6375" y="0.2314">03:00</text><text x="-0.6375" y="0.1322">06:00</text><text x="-0.6375" y="0.0329">09:00</text><text x="-0.6375" y="-0.0663">12:00</text><text x="-0.6375" y="-0.1655">15:00</text><text x="-0.6375" y="-0.2648">18:00</text><text x="-0.6375" y="-0.3640">21:00</text><text x="-0.6375" y="-0.4632">00:00</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.5795,0.3197 0.7396,0.3197"/><polyline points="-0.5795,0.2205 0.7396,0.2205"/><polyline points="-0.5795,0.1212 0.7396,0.1212"/><polyline points="-0.5795,0.0220 0.7396,0.0220"/><polyline points="-0.5795,-0.0772 0.7396,-0.0772"/><polyline points="-0.5795,-0.1765 0.7396,-0.1765"/><polyline points="-0.5795,-0.2757 0.7396,-0.2757"/><polyline points="-0.5795,-0.3749 0.7396,-0.3749"/><polyline points="-0.5795,-0.4742 0.7396,-0.4742"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.0035" height="0.7970" x="-0.5918" y="-0.4758"/></g></g></g></g></svg>
diff --git a/other/debug.svg b/other/debug.svg
--- a/other/debug.svg
+++ b/other/debug.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.75 -0.5 1.5 1.0" width="450" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="450" height="300" viewBox="-0.75 -0.5 1.5 1.0"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,7 +22,7 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"><g class="chart"><g class="line"><g fill="none" stroke="rgb(2%, 73%, 80%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="-0.6054,0.1873 -0.2075,0.1873 0.1904,-0.3534"/></g><g fill="none" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="-0.6054,0.3224 0.5088,-0.0830"/></g><g fill="none" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="-0.4065,-0.2182 -0.4065,0.3224"/></g></g></g><g class="hud"><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.6859" width="1.1998" x="-0.6114" y="-0.3584"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><g transform="rotate(-90.0, -0.6353, 0.3224)"><polyline points="-0.6353,0.3374
+}</style><g class="chart"><g class="chart"><g class="line"><g stroke-width="0.0150" stroke="rgb(2%, 73%, 80%)" stroke-opacity="1.0" fill="none"><polyline points="-0.6054,0.1873 -0.2075,0.1873 0.1904,-0.3534"/></g><g stroke-width="0.0150" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="none"><polyline points="-0.6054,0.3224 0.5088,-0.0830"/></g><g stroke-width="0.0150" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" fill="none"><polyline points="-0.4065,-0.2182 -0.4065,0.3224"/></g></g></g><g class="hud"><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.1998" height="0.6859" x="-0.6114" y="-0.3584"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><g transform="rotate(-90.0, -0.6353, 0.3224)"><polyline points="-0.6353,0.3374
 -0.6353,0.3074"/></g><g transform="rotate(-90.0, -0.6353, 0.2549)"><polyline points="-0.6353,0.2699
 -0.6353,0.2399"/></g><g transform="rotate(-90.0, -0.6353, 0.1873)"><polyline points="-0.6353,0.2023
 -0.6353,0.1723"/></g><g transform="rotate(-90.0, -0.6353, 0.1197)"><polyline points="-0.6353,0.1347
@@ -33,11 +33,11 @@
 -0.6353,-0.1656"/></g><g transform="rotate(-90.0, -0.6353, -0.2182)"><polyline points="-0.6353,-0.2032
 -0.6353,-0.2332"/></g><g transform="rotate(-90.0, -0.6353, -0.2858)"><polyline points="-0.6353,-0.2708
 -0.6353,-0.3008"/></g><g transform="rotate(-90.0, -0.6353, -0.3534)"><polyline points="-0.6353,-0.3384
--0.6353,-0.3684"/></g></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" stroke="none" stroke-width="0.0" text-anchor="end"><text x="-0.6639" y="0.3317">0.0</text><text x="-0.6639" y="0.2642">0.5</text><text x="-0.6639" y="0.1966">1.0</text><text x="-0.6639" y="0.1290">1.5</text><text x="-0.6639" y="0.0614">2.0</text><text x="-0.6639" y="-0.0062">2.5</text><text x="-0.6639" y="-0.0737">3.0</text><text x="-0.6639" y="-0.1413">3.5</text><text x="-0.6639" y="-0.2089">4.0</text><text x="-0.6639" y="-0.2765">4.5</text><text x="-0.6639" y="-0.3441">5.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.6054,0.3224 0.5883,0.3224"/><polyline points="-0.6054,0.2549 0.5883,0.2549"/><polyline points="-0.6054,0.1873 0.5883,0.1873"/><polyline points="-0.6054,0.1197 0.5883,0.1197"/><polyline points="-0.6054,0.0521 0.5883,0.0521"/><polyline points="-0.6054,-0.0155 0.5883,-0.0155"/><polyline points="-0.6054,-0.0830 0.5883,-0.0830"/><polyline points="-0.6054,-0.1506 0.5883,-0.1506"/><polyline points="-0.6054,-0.2182 0.5883,-0.2182"/><polyline points="-0.6054,-0.2858 0.5883,-0.2858"/><polyline points="-0.6054,-0.3534 0.5883,-0.3534"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.6785" width="0.0032" x="-0.6226" y="-0.3547"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.6054,0.3628
+-0.6353,-0.3684"/></g></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" text-anchor="end"><text x="-0.6639" y="0.3317">0.0</text><text x="-0.6639" y="0.2642">0.5</text><text x="-0.6639" y="0.1966">1.0</text><text x="-0.6639" y="0.1290">1.5</text><text x="-0.6639" y="0.0614">2.0</text><text x="-0.6639" y="-0.0062">2.5</text><text x="-0.6639" y="-0.0737">3.0</text><text x="-0.6639" y="-0.1413">3.5</text><text x="-0.6639" y="-0.2089">4.0</text><text x="-0.6639" y="-0.2765">4.5</text><text x="-0.6639" y="-0.3441">5.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.6054,0.3224 0.5883,0.3224"/><polyline points="-0.6054,0.2549 0.5883,0.2549"/><polyline points="-0.6054,0.1873 0.5883,0.1873"/><polyline points="-0.6054,0.1197 0.5883,0.1197"/><polyline points="-0.6054,0.0521 0.5883,0.0521"/><polyline points="-0.6054,-0.0155 0.5883,-0.0155"/><polyline points="-0.6054,-0.0830 0.5883,-0.0830"/><polyline points="-0.6054,-0.1506 0.5883,-0.1506"/><polyline points="-0.6054,-0.2182 0.5883,-0.2182"/><polyline points="-0.6054,-0.2858 0.5883,-0.2858"/><polyline points="-0.6054,-0.3534 0.5883,-0.3534"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.0032" height="0.6785" x="-0.6226" y="-0.3547"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.6054,0.3628
 -0.6054,0.3328"/><polyline points="-0.4065,0.3628
 -0.4065,0.3328"/><polyline points="-0.2075,0.3628
 -0.2075,0.3328"/><polyline points="-0.0086,0.3628
 -0.0086,0.3328"/><polyline points="0.1904,0.3628
 0.1904,0.3328"/><polyline points="0.3894,0.3628
 0.3894,0.3328"/><polyline points="0.5883,0.3628
-0.5883,0.3328"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.6054" y="0.3907">0.0</text><text x="-0.4065" y="0.3907">0.5</text><text x="-0.2075" y="0.3907">1.0</text><text x="-0.0086" y="0.3907">1.5</text><text x="0.1904" y="0.3907">2.0</text><text x="0.3894" y="0.3907">2.5</text><text x="0.5883" y="0.3907">3.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.6054,0.3224 -0.6054,-0.3534"/><polyline points="-0.4065,0.3224 -0.4065,-0.3534"/><polyline points="-0.2075,0.3224 -0.2075,-0.3534"/><polyline points="-0.0086,0.3224 -0.0086,-0.3534"/><polyline points="0.1904,0.3224 0.1904,-0.3534"/><polyline points="0.3894,0.3224 0.3894,-0.3534"/><polyline points="0.5883,0.3224 0.5883,-0.3534"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0027" width="1.1970" x="-0.6070" y="0.3343"/></g></g></g><g class="title"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0796" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.0512" y="-0.4184">Line Chart</text></g></g><g class="title"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0478" stroke="none" stroke-width="0.0" text-anchor="end"><text x="0.6152" y="0.4603">Made with love and chart-svg</text></g></g><g class="legend"><g class="legendBorder"><g fill="rgb(99%, 99%, 99%)" fill-opacity="1.0" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0025"><rect height="0.1791" width="0.3840" x="0.3297" y="0.0775"/></g></g><g class="legendContent"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3496" y="0.2295">palette1 2</text></g><g fill="none" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="0.5684,0.2211 0.6878,0.2211"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3496" y="0.1755">palette1 1</text></g><g fill="none" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="0.5684,0.1670 0.6878,0.1670"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3496" y="0.1214">palette1 0</text></g><g fill="none" stroke="rgb(2%, 73%, 80%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="0.5684,0.1129 0.6878,0.1129"/></g></g></g><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.9990" width="1.499" x="-0.7495" y="-0.4995"/></g></g></g><g class="glyphize"><g class="chart"><g class="line"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.6054" cy="0.1873" r="0.0050"/><circle cx="-0.2075" cy="0.1873" r="0.0050"/><circle cx="0.1904" cy="-0.3534" r="0.0050"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.6054" cy="0.3224" r="0.0050"/><circle cx="0.5088" cy="-0.0830" r="0.0050"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.4065" cy="-0.2182" r="0.0050"/><circle cx="-0.4065" cy="0.3224" r="0.0050"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.0086" cy="-0.0155" r="0.0050"/></g></g><g class="hud"><g class="frame"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.0115" cy="-0.0155" r="0.0050"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.6353" cy="0.3224" r="0.0050"/><circle cx="-0.6353" cy="0.2549" r="0.0050"/><circle cx="-0.6353" cy="0.1873" r="0.0050"/><circle cx="-0.6353" cy="0.1197" r="0.0050"/><circle cx="-0.6353" cy="0.0521" r="0.0050"/><circle cx="-0.6353" cy="-0.0155" r="0.0050"/><circle cx="-0.6353" cy="-0.0830" r="0.0050"/><circle cx="-0.6353" cy="-0.1506" r="0.0050"/><circle cx="-0.6353" cy="-0.2182" r="0.0050"/><circle cx="-0.6353" cy="-0.2858" r="0.0050"/><circle cx="-0.6353" cy="-0.3534" r="0.0050"/></g></g><g class="ticktext"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.6639" cy="0.3317" r="0.0050"/><circle cx="-0.6639" cy="0.2642" r="0.0050"/><circle cx="-0.6639" cy="0.1966" r="0.0050"/><circle cx="-0.6639" cy="0.1290" r="0.0050"/><circle cx="-0.6639" cy="0.0614" r="0.0050"/><circle cx="-0.6639" cy="-0.0062" r="0.0050"/><circle cx="-0.6639" cy="-0.0737" r="0.0050"/><circle cx="-0.6639" cy="-0.1413" r="0.0050"/><circle cx="-0.6639" cy="-0.2089" r="0.0050"/><circle cx="-0.6639" cy="-0.2765" r="0.0050"/><circle cx="-0.6639" cy="-0.3441" r="0.0050"/></g></g><g class="ticklines"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.6054" cy="0.3224" r="0.0050"/><circle cx="0.5883" cy="0.3224" r="0.0050"/><circle cx="-0.6054" cy="0.2549" r="0.0050"/><circle cx="0.5883" cy="0.2549" r="0.0050"/><circle cx="-0.6054" cy="0.1873" r="0.0050"/><circle cx="0.5883" cy="0.1873" r="0.0050"/><circle cx="-0.6054" cy="0.1197" r="0.0050"/><circle cx="0.5883" cy="0.1197" r="0.0050"/><circle cx="-0.6054" cy="0.0521" r="0.0050"/><circle cx="0.5883" cy="0.0521" r="0.0050"/><circle cx="-0.6054" cy="-0.0155" r="0.0050"/><circle cx="0.5883" cy="-0.0155" r="0.0050"/><circle cx="-0.6054" cy="-0.0830" r="0.0050"/><circle cx="0.5883" cy="-0.0830" r="0.0050"/><circle cx="-0.6054" cy="-0.1506" r="0.0050"/><circle cx="0.5883" cy="-0.1506" r="0.0050"/><circle cx="-0.6054" cy="-0.2182" r="0.0050"/><circle cx="0.5883" cy="-0.2182" r="0.0050"/><circle cx="-0.6054" cy="-0.2858" r="0.0050"/><circle cx="0.5883" cy="-0.2858" r="0.0050"/><circle cx="-0.6054" cy="-0.3534" r="0.0050"/><circle cx="0.5883" cy="-0.3534" r="0.0050"/></g></g></g><g class="axisbar"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.6210" cy="-0.0155" r="0.0050"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.6054" cy="0.3478" r="0.0050"/><circle cx="-0.4065" cy="0.3478" r="0.0050"/><circle cx="-0.2075" cy="0.3478" r="0.0050"/><circle cx="-0.0086" cy="0.3478" r="0.0050"/><circle cx="0.1904" cy="0.3478" r="0.0050"/><circle cx="0.3894" cy="0.3478" r="0.0050"/><circle cx="0.5883" cy="0.3478" r="0.0050"/></g></g><g class="ticktext"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.6054" cy="0.3907" r="0.0050"/><circle cx="-0.4065" cy="0.3907" r="0.0050"/><circle cx="-0.2075" cy="0.3907" r="0.0050"/><circle cx="-0.0086" cy="0.3907" r="0.0050"/><circle cx="0.1904" cy="0.3907" r="0.0050"/><circle cx="0.3894" cy="0.3907" r="0.0050"/><circle cx="0.5883" cy="0.3907" r="0.0050"/></g></g><g class="ticklines"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.6054" cy="0.3224" r="0.0050"/><circle cx="-0.6054" cy="-0.3534" r="0.0050"/><circle cx="-0.4065" cy="0.3224" r="0.0050"/><circle cx="-0.4065" cy="-0.3534" r="0.0050"/><circle cx="-0.2075" cy="0.3224" r="0.0050"/><circle cx="-0.2075" cy="-0.3534" r="0.0050"/><circle cx="-0.0086" cy="0.3224" r="0.0050"/><circle cx="-0.0086" cy="-0.3534" r="0.0050"/><circle cx="0.1904" cy="0.3224" r="0.0050"/><circle cx="0.1904" cy="-0.3534" r="0.0050"/><circle cx="0.3894" cy="0.3224" r="0.0050"/><circle cx="0.3894" cy="-0.3534" r="0.0050"/><circle cx="0.5883" cy="0.3224" r="0.0050"/><circle cx="0.5883" cy="-0.3534" r="0.0050"/></g></g></g><g class="axisbar"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.0086" cy="0.3356" r="0.0050"/></g></g></g><g class="title"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.0512" cy="-0.4184" r="0.0050"/></g></g><g class="title"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.6152" cy="0.4603" r="0.0050"/></g></g><g class="legend"><g class="legendBorder"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.5217" cy="0.1670" r="0.0050"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.5217" cy="0.1670" r="0.0050"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.5217" cy="0.1670" r="0.0050"/></g></g><g class="legendContent"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.3496" cy="0.2295" r="0.0050"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.5684" cy="0.2211" r="0.0050"/><circle cx="0.6878" cy="0.2211" r="0.0050"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.3496" cy="0.1755" r="0.0050"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.5684" cy="0.1670" r="0.0050"/><circle cx="0.6878" cy="0.1670" r="0.0050"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.3496" cy="0.1214" r="0.0050"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.5684" cy="0.1129" r="0.0050"/><circle cx="0.6878" cy="0.1129" r="0.0050"/></g></g></g><g class="frame"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0" cy="0" r="0.0050"/></g></g></g></g><g class="rectangularize"><g class="chart"><g class="line"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0010"><rect height="0.5556" width="0.8108" x="-0.6129" y="-0.3609"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0010"><rect height="0.4205" width="1.1292" x="-0.6129" y="-0.0905"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0010"><rect height="0.5556" width="0.0150" x="-0.4140" y="-0.2257"/></g></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0010"><rect height="0.6758" width="1.1938" x="-0.6054" y="-0.3534"/></g></g><g class="hud"><g class="frame"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0010"><rect height="0.6859" width="1.1998" x="-0.6114" y="-0.3584"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0010"><rect height="0.6838" width="0.0340" x="-0.6523" y="-0.3574"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" stroke="none" stroke-width="0.0" text-anchor="end"><text x="-0.6639" y="0.3317"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.0538" x="-0.7177" y="0.2999"/></g>0.0</text><text x="-0.6639" y="0.2642"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.0538" x="-0.7177" y="0.2323"/></g>0.5</text><text x="-0.6639" y="0.1966"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.0538" x="-0.7177" y="0.1647"/></g>1.0</text><text x="-0.6639" y="0.1290"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.0538" x="-0.7177" y="0.0971"/></g>1.5</text><text x="-0.6639" y="0.0614"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.0538" x="-0.7177" y="0.0296"/></g>2.0</text><text x="-0.6639" y="-0.0062"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.0538" x="-0.7177" y="-0.0380"/></g>2.5</text><text x="-0.6639" y="-0.0737"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.0538" x="-0.7177" y="-0.1056"/></g>3.0</text><text x="-0.6639" y="-0.1413"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.0538" x="-0.7177" y="-0.1732"/></g>3.5</text><text x="-0.6639" y="-0.2089"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.0538" x="-0.7177" y="-0.2408"/></g>4.0</text><text x="-0.6639" y="-0.2765"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.0538" x="-0.7177" y="-0.3083"/></g>4.5</text><text x="-0.6639" y="-0.3441"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.0538" x="-0.7177" y="-0.3759"/></g>5.0</text></g></g><g class="ticklines"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0010"><rect height="0.6808" width="1.1988" x="-0.6079" y="-0.3559"/></g></g></g><g class="axisbar"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0010"><rect height="0.6785" width="0.0032" x="-0.6226" y="-0.3547"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0010"><rect height="0.0340" width="1.2018" x="-0.6094" y="0.3308"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.6054" y="0.3907"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.0538" x="-0.6323" y="0.3588"/></g>0.0</text><text x="-0.4065" y="0.3907"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.0538" x="-0.4334" y="0.3588"/></g>0.5</text><text x="-0.2075" y="0.3907"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.0538" x="-0.2344" y="0.3588"/></g>1.0</text><text x="-0.0086" y="0.3907"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.0538" x="-0.0354" y="0.3588"/></g>1.5</text><text x="0.1904" y="0.3907"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.0538" x="0.1635" y="0.3588"/></g>2.0</text><text x="0.3894" y="0.3907"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.0538" x="0.3625" y="0.3588"/></g>2.5</text><text x="0.5883" y="0.3907"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.0538" x="0.5615" y="0.3588"/></g>3.0</text></g></g><g class="ticklines"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0010"><rect height="0.6808" width="1.1988" x="-0.6079" y="-0.3559"/></g></g></g><g class="axisbar"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0010"><rect height="0.0027" width="1.1970" x="-0.6070" y="0.3343"/></g></g></g><g class="title"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0796" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.0512" y="-0.4184"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0001"><rect height="0.0876" width="0.3582" x="-0.2303" y="-0.4821"/></g>Line Chart</text></g></g><g class="title"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0478" stroke="none" stroke-width="0.0" text-anchor="end"><text x="0.6152" y="0.4603"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0526" width="0.6017" x="0.0135" y="0.4221"/></g>Made with love and chart-svg</text></g></g><g class="legend"><g class="legendBorder"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0010"><rect height="0.1858" width="0.3920" x="0.3257" y="0.0741"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0010"><rect height="0.1791" width="0.3840" x="0.3297" y="0.0775"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0010"><rect height="0.1816" width="0.3865" x="0.3284" y="0.0762"/></g></g><g class="legendContent"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3496" y="0.2295"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.1791" x="0.3496" y="0.1977"/></g>palette1 2</text></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0010"><rect height="0.0150" width="0.1344" x="0.5609" y="0.2136"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3496" y="0.1755"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.1791" x="0.3496" y="0.1436"/></g>palette1 1</text></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0010"><rect height="0.0150" width="0.1344" x="0.5609" y="0.1595"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3496" y="0.1214"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0000"><rect height="0.0438" width="0.1791" x="0.3496" y="0.0895"/></g>palette1 0</text></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0010"><rect height="0.0150" width="0.1344" x="0.5609" y="0.1055"/></g></g></g><g class="frame"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0010"><rect height="0.9990" width="1.499" x="-0.7495" y="-0.4995"/></g></g></g></g></g><g class="hud"/></svg>
+0.5883,0.3328"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" text-anchor="middle"><text x="-0.6054" y="0.3907">0.0</text><text x="-0.4065" y="0.3907">0.5</text><text x="-0.2075" y="0.3907">1.0</text><text x="-0.0086" y="0.3907">1.5</text><text x="0.1904" y="0.3907">2.0</text><text x="0.3894" y="0.3907">2.5</text><text x="0.5883" y="0.3907">3.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.6054,0.3224 -0.6054,-0.3534"/><polyline points="-0.4065,0.3224 -0.4065,-0.3534"/><polyline points="-0.2075,0.3224 -0.2075,-0.3534"/><polyline points="-0.0086,0.3224 -0.0086,-0.3534"/><polyline points="0.1904,0.3224 0.1904,-0.3534"/><polyline points="0.3894,0.3224 0.3894,-0.3534"/><polyline points="0.5883,0.3224 0.5883,-0.3534"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="1.1970" height="0.0027" x="-0.6070" y="0.3343"/></g></g></g><g class="title"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0796" text-anchor="middle"><text x="-0.0512" y="-0.4184">Line Chart</text></g></g><g class="title"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0478" text-anchor="end"><text x="0.6152" y="0.4603">Made with love and chart-svg</text></g></g><g class="legend"><g class="legendBorder"><g stroke-width="0.0025" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(99%, 99%, 99%)" fill-opacity="1.0"><rect width="0.3840" height="0.1791" x="0.3297" y="0.0775"/></g></g><g class="legendContent"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" text-anchor="start"><text x="0.3496" y="0.2295">palette1 2</text></g><g stroke-width="0.0150" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" fill="none"><polyline points="0.5684,0.2211 0.6878,0.2211"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" text-anchor="start"><text x="0.3496" y="0.1755">palette1 1</text></g><g stroke-width="0.0150" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="none"><polyline points="0.5684,0.1670 0.6878,0.1670"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" text-anchor="start"><text x="0.3496" y="0.1214">palette1 0</text></g><g stroke-width="0.0150" stroke="rgb(2%, 73%, 80%)" stroke-opacity="1.0" fill="none"><polyline points="0.5684,0.1129 0.6878,0.1129"/></g></g></g><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.499" height="0.9990" x="-0.7495" y="-0.4995"/></g></g></g><g class="glyphize"><g class="chart"><g class="line"><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="-0.6054" cy="0.1873" r="0.0050"/><circle cx="-0.2075" cy="0.1873" r="0.0050"/><circle cx="0.1904" cy="-0.3534" r="0.0050"/></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="-0.6054" cy="0.3224" r="0.0050"/><circle cx="0.5088" cy="-0.0830" r="0.0050"/></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="-0.4065" cy="-0.2182" r="0.0050"/><circle cx="-0.4065" cy="0.3224" r="0.0050"/></g></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="-0.0086" cy="-0.0155" r="0.0050"/></g></g><g class="hud"><g class="frame"><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="-0.0115" cy="-0.0155" r="0.0050"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="-0.6353" cy="0.3224" r="0.0050"/><circle cx="-0.6353" cy="0.2549" r="0.0050"/><circle cx="-0.6353" cy="0.1873" r="0.0050"/><circle cx="-0.6353" cy="0.1197" r="0.0050"/><circle cx="-0.6353" cy="0.0521" r="0.0050"/><circle cx="-0.6353" cy="-0.0155" r="0.0050"/><circle cx="-0.6353" cy="-0.0830" r="0.0050"/><circle cx="-0.6353" cy="-0.1506" r="0.0050"/><circle cx="-0.6353" cy="-0.2182" r="0.0050"/><circle cx="-0.6353" cy="-0.2858" r="0.0050"/><circle cx="-0.6353" cy="-0.3534" r="0.0050"/></g></g><g class="ticktext"><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="-0.6639" cy="0.3317" r="0.0050"/><circle cx="-0.6639" cy="0.2642" r="0.0050"/><circle cx="-0.6639" cy="0.1966" r="0.0050"/><circle cx="-0.6639" cy="0.1290" r="0.0050"/><circle cx="-0.6639" cy="0.0614" r="0.0050"/><circle cx="-0.6639" cy="-0.0062" r="0.0050"/><circle cx="-0.6639" cy="-0.0737" r="0.0050"/><circle cx="-0.6639" cy="-0.1413" r="0.0050"/><circle cx="-0.6639" cy="-0.2089" r="0.0050"/><circle cx="-0.6639" cy="-0.2765" r="0.0050"/><circle cx="-0.6639" cy="-0.3441" r="0.0050"/></g></g><g class="ticklines"><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="-0.6054" cy="0.3224" r="0.0050"/><circle cx="0.5883" cy="0.3224" r="0.0050"/><circle cx="-0.6054" cy="0.2549" r="0.0050"/><circle cx="0.5883" cy="0.2549" r="0.0050"/><circle cx="-0.6054" cy="0.1873" r="0.0050"/><circle cx="0.5883" cy="0.1873" r="0.0050"/><circle cx="-0.6054" cy="0.1197" r="0.0050"/><circle cx="0.5883" cy="0.1197" r="0.0050"/><circle cx="-0.6054" cy="0.0521" r="0.0050"/><circle cx="0.5883" cy="0.0521" r="0.0050"/><circle cx="-0.6054" cy="-0.0155" r="0.0050"/><circle cx="0.5883" cy="-0.0155" r="0.0050"/><circle cx="-0.6054" cy="-0.0830" r="0.0050"/><circle cx="0.5883" cy="-0.0830" r="0.0050"/><circle cx="-0.6054" cy="-0.1506" r="0.0050"/><circle cx="0.5883" cy="-0.1506" r="0.0050"/><circle cx="-0.6054" cy="-0.2182" r="0.0050"/><circle cx="0.5883" cy="-0.2182" r="0.0050"/><circle cx="-0.6054" cy="-0.2858" r="0.0050"/><circle cx="0.5883" cy="-0.2858" r="0.0050"/><circle cx="-0.6054" cy="-0.3534" r="0.0050"/><circle cx="0.5883" cy="-0.3534" r="0.0050"/></g></g></g><g class="axisbar"><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="-0.6210" cy="-0.0155" r="0.0050"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="-0.6054" cy="0.3478" r="0.0050"/><circle cx="-0.4065" cy="0.3478" r="0.0050"/><circle cx="-0.2075" cy="0.3478" r="0.0050"/><circle cx="-0.0086" cy="0.3478" r="0.0050"/><circle cx="0.1904" cy="0.3478" r="0.0050"/><circle cx="0.3894" cy="0.3478" r="0.0050"/><circle cx="0.5883" cy="0.3478" r="0.0050"/></g></g><g class="ticktext"><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="-0.6054" cy="0.3907" r="0.0050"/><circle cx="-0.4065" cy="0.3907" r="0.0050"/><circle cx="-0.2075" cy="0.3907" r="0.0050"/><circle cx="-0.0086" cy="0.3907" r="0.0050"/><circle cx="0.1904" cy="0.3907" r="0.0050"/><circle cx="0.3894" cy="0.3907" r="0.0050"/><circle cx="0.5883" cy="0.3907" r="0.0050"/></g></g><g class="ticklines"><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="-0.6054" cy="0.3224" r="0.0050"/><circle cx="-0.6054" cy="-0.3534" r="0.0050"/><circle cx="-0.4065" cy="0.3224" r="0.0050"/><circle cx="-0.4065" cy="-0.3534" r="0.0050"/><circle cx="-0.2075" cy="0.3224" r="0.0050"/><circle cx="-0.2075" cy="-0.3534" r="0.0050"/><circle cx="-0.0086" cy="0.3224" r="0.0050"/><circle cx="-0.0086" cy="-0.3534" r="0.0050"/><circle cx="0.1904" cy="0.3224" r="0.0050"/><circle cx="0.1904" cy="-0.3534" r="0.0050"/><circle cx="0.3894" cy="0.3224" r="0.0050"/><circle cx="0.3894" cy="-0.3534" r="0.0050"/><circle cx="0.5883" cy="0.3224" r="0.0050"/><circle cx="0.5883" cy="-0.3534" r="0.0050"/></g></g></g><g class="axisbar"><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="-0.0086" cy="0.3356" r="0.0050"/></g></g></g><g class="title"><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="-0.0512" cy="-0.4184" r="0.0050"/></g></g><g class="title"><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="0.6152" cy="0.4603" r="0.0050"/></g></g><g class="legend"><g class="legendBorder"><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="0.5217" cy="0.1670" r="0.0050"/></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="0.5217" cy="0.1670" r="0.0050"/></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="0.5217" cy="0.1670" r="0.0050"/></g></g><g class="legendContent"><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="0.3496" cy="0.2295" r="0.0050"/></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="0.5684" cy="0.2211" r="0.0050"/><circle cx="0.6878" cy="0.2211" r="0.0050"/></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="0.3496" cy="0.1755" r="0.0050"/></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="0.5684" cy="0.1670" r="0.0050"/><circle cx="0.6878" cy="0.1670" r="0.0050"/></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="0.3496" cy="0.1214" r="0.0050"/></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="0.5684" cy="0.1129" r="0.0050"/><circle cx="0.6878" cy="0.1129" r="0.0050"/></g></g></g><g class="frame"><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="0" cy="0" r="0.0050"/></g></g></g></g><g class="rectangularize"><g class="chart"><g class="line"><g stroke-width="0.0010" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.8108" height="0.5556" x="-0.6129" y="-0.3609"/></g><g stroke-width="0.0010" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="1.1292" height="0.4205" x="-0.6129" y="-0.0905"/></g><g stroke-width="0.0010" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0150" height="0.5556" x="-0.4140" y="-0.2257"/></g></g><g stroke-width="0.0010" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="1.1938" height="0.6758" x="-0.6054" y="-0.3534"/></g></g><g class="hud"><g class="frame"><g stroke-width="0.0010" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="1.1998" height="0.6859" x="-0.6114" y="-0.3584"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0010" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0340" height="0.6838" x="-0.6523" y="-0.3574"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" text-anchor="end"><text x="-0.6639" y="0.3317"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0538" height="0.0438" x="-0.7177" y="0.2999"/></g>0.0</text><text x="-0.6639" y="0.2642"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0538" height="0.0438" x="-0.7177" y="0.2323"/></g>0.5</text><text x="-0.6639" y="0.1966"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0538" height="0.0438" x="-0.7177" y="0.1647"/></g>1.0</text><text x="-0.6639" y="0.1290"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0538" height="0.0438" x="-0.7177" y="0.0971"/></g>1.5</text><text x="-0.6639" y="0.0614"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0538" height="0.0438" x="-0.7177" y="0.0296"/></g>2.0</text><text x="-0.6639" y="-0.0062"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0538" height="0.0438" x="-0.7177" y="-0.0380"/></g>2.5</text><text x="-0.6639" y="-0.0737"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0538" height="0.0438" x="-0.7177" y="-0.1056"/></g>3.0</text><text x="-0.6639" y="-0.1413"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0538" height="0.0438" x="-0.7177" y="-0.1732"/></g>3.5</text><text x="-0.6639" y="-0.2089"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0538" height="0.0438" x="-0.7177" y="-0.2408"/></g>4.0</text><text x="-0.6639" y="-0.2765"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0538" height="0.0438" x="-0.7177" y="-0.3083"/></g>4.5</text><text x="-0.6639" y="-0.3441"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0538" height="0.0438" x="-0.7177" y="-0.3759"/></g>5.0</text></g></g><g class="ticklines"><g stroke-width="0.0010" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="1.1988" height="0.6808" x="-0.6079" y="-0.3559"/></g></g></g><g class="axisbar"><g stroke-width="0.0010" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0032" height="0.6785" x="-0.6226" y="-0.3547"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0010" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="1.2018" height="0.0340" x="-0.6094" y="0.3308"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" text-anchor="middle"><text x="-0.6054" y="0.3907"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0538" height="0.0438" x="-0.6323" y="0.3588"/></g>0.0</text><text x="-0.4065" y="0.3907"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0538" height="0.0438" x="-0.4334" y="0.3588"/></g>0.5</text><text x="-0.2075" y="0.3907"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0538" height="0.0438" x="-0.2344" y="0.3588"/></g>1.0</text><text x="-0.0086" y="0.3907"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0538" height="0.0438" x="-0.0354" y="0.3588"/></g>1.5</text><text x="0.1904" y="0.3907"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0538" height="0.0438" x="0.1635" y="0.3588"/></g>2.0</text><text x="0.3894" y="0.3907"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0538" height="0.0438" x="0.3625" y="0.3588"/></g>2.5</text><text x="0.5883" y="0.3907"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0538" height="0.0438" x="0.5615" y="0.3588"/></g>3.0</text></g></g><g class="ticklines"><g stroke-width="0.0010" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="1.1988" height="0.6808" x="-0.6079" y="-0.3559"/></g></g></g><g class="axisbar"><g stroke-width="0.0010" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="1.1970" height="0.0027" x="-0.6070" y="0.3343"/></g></g></g><g class="title"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0796" text-anchor="middle"><text x="-0.0512" y="-0.4184"><g stroke-width="0.0001" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.3582" height="0.0876" x="-0.2303" y="-0.4821"/></g>Line Chart</text></g></g><g class="title"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0478" text-anchor="end"><text x="0.6152" y="0.4603"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.6017" height="0.0526" x="0.0135" y="0.4221"/></g>Made with love and chart-svg</text></g></g><g class="legend"><g class="legendBorder"><g stroke-width="0.0010" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.3920" height="0.1858" x="0.3257" y="0.0741"/></g><g stroke-width="0.0010" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.3840" height="0.1791" x="0.3297" y="0.0775"/></g><g stroke-width="0.0010" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.3865" height="0.1816" x="0.3284" y="0.0762"/></g></g><g class="legendContent"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" text-anchor="start"><text x="0.3496" y="0.2295"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.1791" height="0.0438" x="0.3496" y="0.1977"/></g>palette1 2</text></g><g stroke-width="0.0010" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.1344" height="0.0150" x="0.5609" y="0.2136"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" text-anchor="start"><text x="0.3496" y="0.1755"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.1791" height="0.0438" x="0.3496" y="0.1436"/></g>palette1 1</text></g><g stroke-width="0.0010" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.1344" height="0.0150" x="0.5609" y="0.1595"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" text-anchor="start"><text x="0.3496" y="0.1214"><g stroke-width="0.0000" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.1791" height="0.0438" x="0.3496" y="0.0895"/></g>palette1 0</text></g><g stroke-width="0.0010" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.1344" height="0.0150" x="0.5609" y="0.1055"/></g></g></g><g class="frame"><g stroke-width="0.0010" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="1.499" height="0.9990" x="-0.7495" y="-0.4995"/></g></g></g></g></g><g class="hud"></g></svg>
diff --git a/other/ellipse.svg b/other/ellipse.svg
--- a/other/ellipse.svg
+++ b/other/ellipse.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.85 -0.5 1.7 1.0" width="510" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="510" height="300" viewBox="-0.85 -0.5 1.7 1.0"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,7 +22,7 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"><g class="ellipse"><g fill="none" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" stroke-width="0.0050"><polyline points="0.2183,-0.0362 0.2163,-0.0225 0.2135,-0.0087 0.2098,0.0053 0.2053,0.0193 0.1999,0.0333 0.1937,0.0474 0.1867,0.0614 0.1789,0.0754 0.1704,0.0894 0.1611,0.1032 0.1511,0.1168 0.1403,0.1303 0.1289,0.1436 0.1169,0.1567 0.1042,0.1695 0.0909,0.1820 0.0770,0.1941 0.0626,0.2060 0.0476,0.2174 0.0323,0.2285 0.0164,0.2391 0.0002,0.2493 -0.0164,0.2590 -0.0334,0.2682 -0.0506,0.2769 -0.0681,0.2851 -0.0857,0.2927 -0.1036,0.2998 -0.1216,0.3062 -0.1397,0.3121 -0.1578,0.3173 -0.1760,0.3219 -0.1941,0.3259 -0.2121,0.3292 -0.2301,0.3319 -0.2478,0.3340 -0.2654,0.3353 -0.2828,0.3360 -0.2999,0.3360 -0.3166,0.3354 -0.3331,0.3341 -0.3491,0.3321 -0.3647,0.3295 -0.3799,0.3262 -0.3946,0.3223 -0.4087,0.3177 -0.4223,0.3125 -0.4353,0.3067 -0.4477,0.3003 -0.4595,0.2933 -0.4705,0.2858 -0.4809,0.2776 -0.4906,0.2690 -0.4995,0.2598 -0.5077,0.2501 -0.5151,0.2400 -0.5216,0.2294 -0.5274,0.2184 -0.5324,0.2070 -0.5365,0.1952 -0.5398,0.1830 -0.5422,0.1705 -0.5438,0.1578 -0.5445,0.1447 -0.5443,0.1315 -0.5433,0.1180 -0.5414,0.1043 -0.5387,0.0905 -0.5351,0.0766 -0.5307,0.0626 -0.5255,0.0486 -0.5194,0.0345 -0.5125,0.0205 -0.5049,0.0064 -0.4964,-0.0075 -0.4872,-0.0213 -0.4773,-0.0350 -0.4667,-0.0485 -0.4554,-0.0618 -0.4434,-0.0749 -0.4308,-0.0878 -0.4176,-0.1003 -0.4038,-0.1125 -0.3894,-0.1244 -0.3746,-0.1359 -0.3593,-0.1471 -0.3435,-0.1577 -0.3273,-0.1680 -0.3108,-0.1778 -0.2939,-0.1871 -0.2767,-0.1958 -0.2592,-0.2041 -0.2416,-0.2118 -0.2237,-0.2189 -0.2058,-0.2255 -0.1877,-0.2314 -0.1696,-0.2367 -0.1514,-0.2414 -0.1333,-0.2455 -0.1152,-0.2489"/></g><g fill="none" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0020"><polyline points="0.0878,-0.2365 0.0692,-0.2426 0.0496,-0.2476 0.0292,-0.2515 0.0081,-0.2543 -0.0137,-0.2558 -0.0361,-0.2562 -0.0590,-0.2555 -0.0823,-0.2535 -0.1059,-0.2505 -0.1298,-0.2462 -0.1538,-0.2409 -0.1778,-0.2344 -0.2017,-0.2268 -0.2255,-0.2182 -0.2490,-0.2086 -0.2722,-0.1980 -0.2950,-0.1865 -0.3172,-0.1740 -0.3389,-0.1607 -0.3598,-0.1467 -0.3800,-0.1319 -0.3993,-0.1164 -0.4176,-0.1003 -0.4350,-0.0836 -0.4513,-0.0665 -0.4664,-0.0489 -0.4803,-0.0310 -0.4930,-0.0128 -0.5044,0.0056 -0.5144,0.0242 -0.5231,0.0428 -0.5303,0.0614 -0.5360,0.0799 -0.5403,0.0982 -0.5431,0.1163 -0.5444,0.1341 -0.5442,0.1516 -0.5425,0.1686 -0.5393,0.1851 -0.5346,0.2010 -0.5284,0.2163 -0.5208,0.2309 -0.5117,0.2447 -0.5013,0.2578 -0.4896,0.2699 -0.4765,0.2812 -0.4623,0.2915 -0.4468,0.3008 -0.4302,0.3091 -0.4126,0.3163 -0.3939,0.3225 -0.3744,0.3275 -0.3540,0.3314 -0.3329,0.3341 -0.3110,0.3357 -0.2886,0.3361 -0.2657,0.3353 -0.2424,0.3334 -0.2188,0.3303 -0.1950,0.3261 -0.1710,0.3207 -0.1470,0.3143 -0.1231,0.3067 -0.0993,0.2981 -0.0757,0.2885 -0.0525,0.2779 -0.0298,0.2663 -0.0075,0.2539 0.0141,0.2406 0.0350,0.2265 0.0552,0.2117 0.0745,0.1962 0.0929,0.1801 0.1102,0.1635 0.1265,0.1463 0.1416,0.1288 0.1556,0.1108 0.1683,0.0926 0.1796,0.0742 0.1897,0.0557 0.1983,0.0371 0.2055,0.0185 0.2113,0 0.2156,-0.0183 0.2184,-0.0365 0.2197,-0.0543 0.2195,-0.0717 0.2177,-0.0887 0.2145,-0.1052 0.2098,-0.1212 0.2036,-0.1364 0.1960,-0.1510 0.1870,-0.1649 0.1766,-0.1779 0.1648,-0.1901 0.1518,-0.2013 0.1375,-0.2117 0.1220,-0.2210 0.1054,-0.2293 0.0878,-0.2365"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.1624" cy="0.0399" r="0.0150"/></g><g fill="rgb(100%, 71%, 35%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><rect height="0.0300" width="0.0300" x="0.2033" y="-0.0512"/><rect height="0.0300" width="0.0300" x="-0.1302" y="-0.2639"/></g><g fill="rgb(53%, 51%, 28%)" fill-opacity="0.00" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" stroke-width="0.0020"><rect height="0.5851" width="0.7629" x="-0.5445" y="-0.2489"/></g><g fill="none" stroke="rgb(21%, 29%, 7%)" stroke-dasharray="0.0300 0.0100" stroke-linecap="round" stroke-opacity="1.0" stroke-width="0.0050"><polyline points="0.0878,-0.2365 -0.4126,0.3163"/></g><g fill="none" stroke="rgb(73%, 34%, 1%)" stroke-dasharray="0.0300 0.0100" stroke-linecap="round" stroke-opacity="1.0" stroke-width="0.0050"><polyline points="-0.4513,-0.0665 0.1265,0.1463"/></g></g></g><g class="hud"><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.7447" width="1.0007" x="-0.6156" y="-0.3553"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><g transform="rotate(-90.0, -0.6332, 0.3894)"><polyline points="-0.6332,0.4044
+}</style><g class="chart"><g class="ellipse"><g stroke-width="0.0050" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" fill="none"><polyline points="0.2183,-0.0362 0.2163,-0.0225 0.2135,-0.0087 0.2098,0.0053 0.2053,0.0193 0.1999,0.0333 0.1937,0.0474 0.1867,0.0614 0.1789,0.0754 0.1704,0.0894 0.1611,0.1032 0.1511,0.1168 0.1403,0.1303 0.1289,0.1436 0.1169,0.1567 0.1042,0.1695 0.0909,0.1820 0.0770,0.1941 0.0626,0.2060 0.0476,0.2174 0.0323,0.2285 0.0164,0.2391 0.0002,0.2493 -0.0164,0.2590 -0.0334,0.2682 -0.0506,0.2769 -0.0681,0.2851 -0.0857,0.2927 -0.1036,0.2998 -0.1216,0.3062 -0.1397,0.3121 -0.1578,0.3173 -0.1760,0.3219 -0.1941,0.3259 -0.2121,0.3292 -0.2301,0.3319 -0.2478,0.3340 -0.2654,0.3353 -0.2828,0.3360 -0.2999,0.3360 -0.3166,0.3354 -0.3331,0.3341 -0.3491,0.3321 -0.3647,0.3295 -0.3799,0.3262 -0.3946,0.3223 -0.4087,0.3177 -0.4223,0.3125 -0.4353,0.3067 -0.4477,0.3003 -0.4595,0.2933 -0.4705,0.2858 -0.4809,0.2776 -0.4906,0.2690 -0.4995,0.2598 -0.5077,0.2501 -0.5151,0.2400 -0.5216,0.2294 -0.5274,0.2184 -0.5324,0.2070 -0.5365,0.1952 -0.5398,0.1830 -0.5422,0.1705 -0.5438,0.1578 -0.5445,0.1447 -0.5443,0.1315 -0.5433,0.1180 -0.5414,0.1043 -0.5387,0.0905 -0.5351,0.0766 -0.5307,0.0626 -0.5255,0.0486 -0.5194,0.0345 -0.5125,0.0205 -0.5049,0.0064 -0.4964,-0.0075 -0.4872,-0.0213 -0.4773,-0.0350 -0.4667,-0.0485 -0.4554,-0.0618 -0.4434,-0.0749 -0.4308,-0.0878 -0.4176,-0.1003 -0.4038,-0.1125 -0.3894,-0.1244 -0.3746,-0.1359 -0.3593,-0.1471 -0.3435,-0.1577 -0.3273,-0.1680 -0.3108,-0.1778 -0.2939,-0.1871 -0.2767,-0.1958 -0.2592,-0.2041 -0.2416,-0.2118 -0.2237,-0.2189 -0.2058,-0.2255 -0.1877,-0.2314 -0.1696,-0.2367 -0.1514,-0.2414 -0.1333,-0.2455 -0.1152,-0.2489"/></g><g stroke-width="0.0020" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="none"><polyline points="0.0878,-0.2365 0.0692,-0.2426 0.0496,-0.2476 0.0292,-0.2515 0.0081,-0.2543 -0.0137,-0.2558 -0.0361,-0.2562 -0.0590,-0.2555 -0.0823,-0.2535 -0.1059,-0.2505 -0.1298,-0.2462 -0.1538,-0.2409 -0.1778,-0.2344 -0.2017,-0.2268 -0.2255,-0.2182 -0.2490,-0.2086 -0.2722,-0.1980 -0.2950,-0.1865 -0.3172,-0.1740 -0.3389,-0.1607 -0.3598,-0.1467 -0.3800,-0.1319 -0.3993,-0.1164 -0.4176,-0.1003 -0.4350,-0.0836 -0.4513,-0.0665 -0.4664,-0.0489 -0.4803,-0.0310 -0.4930,-0.0128 -0.5044,0.0056 -0.5144,0.0242 -0.5231,0.0428 -0.5303,0.0614 -0.5360,0.0799 -0.5403,0.0982 -0.5431,0.1163 -0.5444,0.1341 -0.5442,0.1516 -0.5425,0.1686 -0.5393,0.1851 -0.5346,0.2010 -0.5284,0.2163 -0.5208,0.2309 -0.5117,0.2447 -0.5013,0.2578 -0.4896,0.2699 -0.4765,0.2812 -0.4623,0.2915 -0.4468,0.3008 -0.4302,0.3091 -0.4126,0.3163 -0.3939,0.3225 -0.3744,0.3275 -0.3540,0.3314 -0.3329,0.3341 -0.3110,0.3357 -0.2886,0.3361 -0.2657,0.3353 -0.2424,0.3334 -0.2188,0.3303 -0.1950,0.3261 -0.1710,0.3207 -0.1470,0.3143 -0.1231,0.3067 -0.0993,0.2981 -0.0757,0.2885 -0.0525,0.2779 -0.0298,0.2663 -0.0075,0.2539 0.0141,0.2406 0.0350,0.2265 0.0552,0.2117 0.0745,0.1962 0.0929,0.1801 0.1102,0.1635 0.1265,0.1463 0.1416,0.1288 0.1556,0.1108 0.1683,0.0926 0.1796,0.0742 0.1897,0.0557 0.1983,0.0371 0.2055,0.0185 0.2113,0 0.2156,-0.0183 0.2184,-0.0365 0.2197,-0.0543 0.2195,-0.0717 0.2177,-0.0887 0.2145,-0.1052 0.2098,-0.1212 0.2036,-0.1364 0.1960,-0.1510 0.1870,-0.1649 0.1766,-0.1779 0.1648,-0.1901 0.1518,-0.2013 0.1375,-0.2117 0.1220,-0.2210 0.1054,-0.2293 0.0878,-0.2365"/></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="-0.1624" cy="0.0399" r="0.0150"/></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(100%, 71%, 35%)" fill-opacity="0.2"><rect width="0.0300" height="0.0300" x="0.2033" y="-0.0512"/><rect width="0.0300" height="0.0300" x="-0.1302" y="-0.2639"/></g><g stroke-width="0.0020" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" fill="rgb(53%, 51%, 28%)" fill-opacity="0.00"><rect width="0.7629" height="0.5851" x="-0.5445" y="-0.2489"/></g><g stroke-width="0.0050" stroke="rgb(21%, 29%, 7%)" stroke-opacity="1.0" fill="none" stroke-linecap="round" stroke-dasharray="0.0300 0.0100"><polyline points="0.0878,-0.2365 -0.4126,0.3163"/></g><g stroke-width="0.0050" stroke="rgb(73%, 34%, 1%)" stroke-opacity="1.0" fill="none" stroke-linecap="round" stroke-dasharray="0.0300 0.0100"><polyline points="-0.4513,-0.0665 0.1265,0.1463"/></g></g></g><g class="hud"><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.0007" height="0.7447" x="-0.6156" y="-0.3553"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><g transform="rotate(-90.0, -0.6332, 0.3894)"><polyline points="-0.6332,0.4044
 -0.6332,0.3744"/></g><g transform="rotate(-90.0, -0.6332, 0.2830)"><polyline points="-0.6332,0.2980
 -0.6332,0.2680"/></g><g transform="rotate(-90.0, -0.6332, 0.1766)"><polyline points="-0.6332,0.1916
 -0.6332,0.1616"/></g><g transform="rotate(-90.0, -0.6332, 0.0702)"><polyline points="-0.6332,0.0852
@@ -30,11 +30,11 @@
 -0.6332,-0.0512"/></g><g transform="rotate(-90.0, -0.6332, -0.1426)"><polyline points="-0.6332,-0.1276
 -0.6332,-0.1576"/></g><g transform="rotate(-90.0, -0.6332, -0.2489)"><polyline points="-0.6332,-0.2339
 -0.6332,-0.2639"/></g><g transform="rotate(-90.0, -0.6332, -0.3553)"><polyline points="-0.6332,-0.3403
--0.6332,-0.3703"/></g></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0294" stroke="none" stroke-width="0.0" text-anchor="end"><text x="-0.6544" y="0.3996">-2.0</text><text x="-0.6544" y="0.2933">-1.5</text><text x="-0.6544" y="0.1869">-1.0</text><text x="-0.6544" y="0.0805">-0.5</text><text x="-0.6544" y="-0.0259"> 0.0</text><text x="-0.6544" y="-0.1323"> 0.5</text><text x="-0.6544" y="-0.2387"> 1.0</text><text x="-0.6544" y="-0.3451"> 1.5</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.6156,0.3894 0.3851,0.3894"/><polyline points="-0.6156,0.2830 0.3851,0.2830"/><polyline points="-0.6156,0.1766 0.3851,0.1766"/><polyline points="-0.6156,0.0702 0.3851,0.0702"/><polyline points="-0.6156,-0.0362 0.3851,-0.0362"/><polyline points="-0.6156,-0.1426 0.3851,-0.1426"/><polyline points="-0.6156,-0.2489 0.3851,-0.2489"/><polyline points="-0.6156,-0.3553 0.3851,-0.3553"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.7477" width="0.0024" x="-0.6238" y="-0.3568"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.6156,0.4267
+-0.6332,-0.3703"/></g></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0294" text-anchor="end"><text x="-0.6544" y="0.3996">-2.0</text><text x="-0.6544" y="0.2933">-1.5</text><text x="-0.6544" y="0.1869">-1.0</text><text x="-0.6544" y="0.0805">-0.5</text><text x="-0.6544" y="-0.0259"> 0.0</text><text x="-0.6544" y="-0.1323"> 0.5</text><text x="-0.6544" y="-0.2387"> 1.0</text><text x="-0.6544" y="-0.3451"> 1.5</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.6156,0.3894 0.3851,0.3894"/><polyline points="-0.6156,0.2830 0.3851,0.2830"/><polyline points="-0.6156,0.1766 0.3851,0.1766"/><polyline points="-0.6156,0.0702 0.3851,0.0702"/><polyline points="-0.6156,-0.0362 0.3851,-0.0362"/><polyline points="-0.6156,-0.1426 0.3851,-0.1426"/><polyline points="-0.6156,-0.2489 0.3851,-0.2489"/><polyline points="-0.6156,-0.3553 0.3851,-0.3553"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.0024" height="0.7477" x="-0.6238" y="-0.3568"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.6156,0.4267
 -0.6156,0.3967"/><polyline points="-0.4488,0.4267
 -0.4488,0.3967"/><polyline points="-0.2820,0.4267
 -0.2820,0.3967"/><polyline points="-0.1152,0.4267
 -0.1152,0.3967"/><polyline points="0.0516,0.4267
 0.0516,0.3967"/><polyline points="0.2183,0.4267
 0.2183,0.3967"/><polyline points="0.3851,0.4267
-0.3851,0.3967"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0294" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.6156" y="0.4590">-2.0</text><text x="-0.4488" y="0.4590">-1.0</text><text x="-0.2820" y="0.4590">-0.5</text><text x="-0.1152" y="0.4590"> 0.0</text><text x="0.0516" y="0.4590"> 0.5</text><text x="0.2183" y="0.4590"> 1.0</text><text x="0.3851" y="0.4590"> 2.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.6156,0.3894 -0.6156,-0.3553"/><polyline points="-0.4488,0.3894 -0.4488,-0.3553"/><polyline points="-0.2820,0.3894 -0.2820,-0.3553"/><polyline points="-0.1152,0.3894 -0.1152,-0.3553"/><polyline points="0.0516,0.3894 0.0516,-0.3553"/><polyline points="0.2183,0.3894 0.2183,-0.3553"/><polyline points="0.3851,0.3894 0.3851,-0.3553"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0030" width="1.0030" x="-0.6168" y="0.3969"/></g></g></g><g class="legend"><g class="legendBorder"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0025"><rect height="0.4357" width="0.2487" x="0.4558" y="-0.3489"/></g></g><g class="legendContent"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0294" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.4705" y="0.0570">Bounding Box</text></g><g fill="rgb(53%, 51%, 28%)" fill-opacity="0.00" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" stroke-width="0.0025"><rect height="0.0186" width="0.0147" x="0.6588" y="0.0384"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0294" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.4705" y="-0.0026">Endpoints</text></g><g fill="rgb(100%, 71%, 35%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><rect height="0.0250" width="0.0250" x="0.6537" y="-0.0244"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0294" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.4705" y="-0.0622">Centroid</text></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.6662" cy="-0.0715" r="0.0125"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0294" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.4705" y="-0.1218">Arc</text></g><g fill="none" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" stroke-width="0.0050"><polyline points="0.6588,-0.1311 0.6883,-0.1311"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0294" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.4705" y="-0.1813">Full Ellipse</text></g><g fill="none" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0020"><polyline points="0.6588,-0.1907 0.6883,-0.1907"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0294" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.4705" y="-0.2409">Minor Axis</text></g><g fill="none" stroke="rgb(73%, 34%, 1%)" stroke-dasharray="0.0300 0.0100" stroke-linecap="round" stroke-opacity="1.0" stroke-width="0.0050"><polyline points="0.6588,-0.2502 0.6883,-0.2502"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0294" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.4705" y="-0.3005">Major Axis</text></g><g fill="none" stroke="rgb(21%, 29%, 7%)" stroke-dasharray="0.0300 0.0100" stroke-linecap="round" stroke-opacity="1.0" stroke-width="0.0050"><polyline points="0.6588,-0.3098 0.6883,-0.3098"/></g></g></g><g class="title"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0471" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="0" y="-0.4225">ArcPosition (Point 1 0) (Point 0 1) (ArcInfo (Point 1.5 1) (pi / 3) True True)</text></g></g><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="1.0" width="1.7" x="-0.85" y="-0.5"/></g></g></g></svg>
+0.3851,0.3967"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0294" text-anchor="middle"><text x="-0.6156" y="0.4590">-2.0</text><text x="-0.4488" y="0.4590">-1.0</text><text x="-0.2820" y="0.4590">-0.5</text><text x="-0.1152" y="0.4590"> 0.0</text><text x="0.0516" y="0.4590"> 0.5</text><text x="0.2183" y="0.4590"> 1.0</text><text x="0.3851" y="0.4590"> 2.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.6156,0.3894 -0.6156,-0.3553"/><polyline points="-0.4488,0.3894 -0.4488,-0.3553"/><polyline points="-0.2820,0.3894 -0.2820,-0.3553"/><polyline points="-0.1152,0.3894 -0.1152,-0.3553"/><polyline points="0.0516,0.3894 0.0516,-0.3553"/><polyline points="0.2183,0.3894 0.2183,-0.3553"/><polyline points="0.3851,0.3894 0.3851,-0.3553"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="1.0030" height="0.0030" x="-0.6168" y="0.3969"/></g></g></g><g class="legend"><g class="legendBorder"><g stroke-width="0.0025" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(5%, 5%, 5%)" fill-opacity="0"><rect width="0.2487" height="0.4357" x="0.4558" y="-0.3489"/></g></g><g class="legendContent"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0294" text-anchor="start"><text x="0.4705" y="0.0570">Bounding Box</text></g><g stroke-width="0.0025" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" fill="rgb(53%, 51%, 28%)" fill-opacity="0.00"><rect width="0.0147" height="0.0186" x="0.6588" y="0.0384"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0294" text-anchor="start"><text x="0.4705" y="-0.0026">Endpoints</text></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(100%, 71%, 35%)" fill-opacity="0.2"><rect width="0.0250" height="0.0250" x="0.6537" y="-0.0244"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0294" text-anchor="start"><text x="0.4705" y="-0.0622">Centroid</text></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="0.6662" cy="-0.0715" r="0.0125"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0294" text-anchor="start"><text x="0.4705" y="-0.1218">Arc</text></g><g stroke-width="0.0050" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" fill="none"><polyline points="0.6588,-0.1311 0.6883,-0.1311"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0294" text-anchor="start"><text x="0.4705" y="-0.1813">Full Ellipse</text></g><g stroke-width="0.0020" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="none"><polyline points="0.6588,-0.1907 0.6883,-0.1907"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0294" text-anchor="start"><text x="0.4705" y="-0.2409">Minor Axis</text></g><g stroke-width="0.0050" stroke="rgb(73%, 34%, 1%)" stroke-opacity="1.0" fill="none" stroke-linecap="round" stroke-dasharray="0.0300 0.0100"><polyline points="0.6588,-0.2502 0.6883,-0.2502"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0294" text-anchor="start"><text x="0.4705" y="-0.3005">Major Axis</text></g><g stroke-width="0.0050" stroke="rgb(21%, 29%, 7%)" stroke-opacity="1.0" fill="none" stroke-linecap="round" stroke-dasharray="0.0300 0.0100"><polyline points="0.6588,-0.3098 0.6883,-0.3098"/></g></g></g><g class="title"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0471" text-anchor="middle"><text x="0" y="-0.4225">ArcPosition (Point 1 0) (Point 0 1) (ArcInfo (Point 1.5 1) (pi / 3) True True)</text></g></g><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.7" height="1.0" x="-0.85" y="-0.5"/></g></g></g></svg>
diff --git a/other/ellipse2.svg b/other/ellipse2.svg
--- a/other/ellipse2.svg
+++ b/other/ellipse2.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-1.0 -0.5 2.0 1.0" width="600" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="600" height="300" viewBox="-1.0 -0.5 2.0 1.0"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,7 +22,7 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"><g class="ellipse"><g fill="none" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" stroke-width="0.0050"><polyline points="0.3261,-0.0362 0.3234,-0.0225 0.3194,-0.0087 0.3143,0.0053 0.3080,0.0193 0.3006,0.0333 0.2920,0.0474 0.2824,0.0614 0.2716,0.0754 0.2598,0.0894 0.2469,0.1032 0.2330,0.1168 0.2182,0.1303 0.2024,0.1436 0.1857,0.1567 0.1681,0.1695 0.1497,0.1820 0.1305,0.1941 0.1105,0.2060 0.0899,0.2174 0.0686,0.2285 0.0466,0.2391 0.0242,0.2493 0.0012,0.2590 -0.0222,0.2682 -0.0461,0.2769 -0.0703,0.2851 -0.0948,0.2927 -0.1195,0.2998 -0.1444,0.3062 -0.1694,0.3121 -0.1945,0.3173 -0.2196,0.3219 -0.2447,0.3259 -0.2697,0.3292 -0.2945,0.3319 -0.3191,0.3340 -0.3435,0.3353 -0.3675,0.3360 -0.3911,0.3360 -0.4143,0.3354 -0.4371,0.3341 -0.4593,0.3321 -0.4809,0.3295 -0.5019,0.3262 -0.5222,0.3223 -0.5418,0.3177 -0.5606,0.3125 -0.5786,0.3067 -0.5957,0.3003 -0.6120,0.2933 -0.6273,0.2858 -0.6417,0.2776 -0.6551,0.2690 -0.6674,0.2598 -0.6787,0.2501 -0.6890,0.2400 -0.6981,0.2294 -0.7061,0.2184 -0.7129,0.2070 -0.7186,0.1952 -0.7232,0.1830 -0.7265,0.1705 -0.7287,0.1578 -0.7297,0.1447 -0.7295,0.1315 -0.7281,0.1180 -0.7255,0.1043 -0.7217,0.0905 -0.7168,0.0766 -0.7106,0.0626 -0.7034,0.0486 -0.6950,0.0345 -0.6855,0.0205 -0.6749,0.0064 -0.6632,-0.0075 -0.6505,-0.0213 -0.6367,-0.0350 -0.6220,-0.0485 -0.6064,-0.0618 -0.5898,-0.0749 -0.5723,-0.0878 -0.5540,-0.1003 -0.5349,-0.1125 -0.5151,-0.1244 -0.4945,-0.1359 -0.4733,-0.1471 -0.4515,-0.1577 -0.4291,-0.1680 -0.4062,-0.1778 -0.3828,-0.1871 -0.3590,-0.1958 -0.3349,-0.2041 -0.3104,-0.2118 -0.2858,-0.2189 -0.2609,-0.2255 -0.2359,-0.2314 -0.2108,-0.2367 -0.1856,-0.2414 -0.1606,-0.2455 -0.1356,-0.2489"/></g><g fill="none" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0020"><polyline points="0.1454,-0.2365 0.1196,-0.2426 0.0926,-0.2476 0.0644,-0.2515 0.0351,-0.2543 0.0049,-0.2558 -0.0261,-0.2562 -0.0578,-0.2555 -0.0900,-0.2535 -0.1227,-0.2505 -0.1557,-0.2462 -0.1889,-0.2409 -0.2221,-0.2344 -0.2553,-0.2268 -0.2882,-0.2182 -0.3208,-0.2086 -0.3529,-0.1980 -0.3844,-0.1865 -0.4152,-0.1740 -0.4451,-0.1607 -0.4741,-0.1467 -0.5020,-0.1319 -0.5287,-0.1164 -0.5541,-0.1003 -0.5781,-0.0836 -0.6007,-0.0665 -0.6216,-0.0489 -0.6409,-0.0310 -0.6585,-0.0128 -0.6742,0.0056 -0.6881,0.0242 -0.7000,0.0428 -0.7100,0.0614 -0.7180,0.0799 -0.7239,0.0982 -0.7278,0.1163 -0.7296,0.1341 -0.7293,0.1516 -0.7269,0.1686 -0.7225,0.1851 -0.7160,0.2010 -0.7074,0.2163 -0.6969,0.2309 -0.6844,0.2447 -0.6700,0.2578 -0.6537,0.2699 -0.6356,0.2812 -0.6159,0.2915 -0.5945,0.3008 -0.5715,0.3091 -0.5471,0.3163 -0.5213,0.3225 -0.4942,0.3275 -0.4660,0.3314 -0.4368,0.3341 -0.4066,0.3357 -0.3756,0.3361 -0.3439,0.3353 -0.3116,0.3334 -0.2789,0.3303 -0.2459,0.3261 -0.2128,0.3207 -0.1795,0.3143 -0.1464,0.3067 -0.1135,0.2981 -0.0809,0.2885 -0.0488,0.2779 -0.0173,0.2663 0.0135,0.2539 0.0435,0.2406 0.0724,0.2265 0.1003,0.2117 0.1270,0.1962 0.1525,0.1801 0.1765,0.1635 0.1990,0.1463 0.2200,0.1288 0.2392,0.1108 0.2568,0.0926 0.2726,0.0742 0.2864,0.0557 0.2984,0.0371 0.3084,0.0185 0.3164,0 0.3223,-0.0183 0.3262,-0.0365 0.3280,-0.0543 0.3277,-0.0717 0.3253,-0.0887 0.3208,-0.1052 0.3143,-0.1212 0.3058,-0.1364 0.2952,-0.1510 0.2827,-0.1649 0.2683,-0.1779 0.2520,-0.1901 0.2340,-0.2013 0.2142,-0.2117 0.1928,-0.2210 0.1699,-0.2293 0.1454,-0.2365"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.2008" cy="0.0399" r="0.0150"/></g><g fill="rgb(100%, 71%, 35%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><rect height="0.0300" width="0.0300" x="0.3111" y="-0.0512"/><rect height="0.0300" width="0.0300" x="-0.1506" y="-0.2639"/></g><g fill="rgb(53%, 51%, 28%)" fill-opacity="0.00" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" stroke-width="0.0020"><rect height="0.5851" width="1.0559" x="-0.7297" y="-0.2489"/></g><g fill="none" stroke="rgb(21%, 29%, 7%)" stroke-dasharray="0.0300 0.0100" stroke-linecap="round" stroke-opacity="1.0" stroke-width="0.0050"><polyline points="0.1454,-0.2365 -0.5471,0.3163"/></g><g fill="none" stroke="rgb(73%, 34%, 1%)" stroke-dasharray="0.0300 0.0100" stroke-linecap="round" stroke-opacity="1.0" stroke-width="0.0050"><polyline points="-0.6007,-0.0665 0.1990,0.1463"/></g></g></g><g class="hud"><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.7447" width="1.3850" x="-0.8281" y="-0.3553"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><g transform="rotate(-90.0, -0.8489, 0.3894)"><polyline points="-0.8489,0.4044
+}</style><g class="chart"><g class="ellipse"><g stroke-width="0.0050" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" fill="none"><polyline points="0.3261,-0.0362 0.3234,-0.0225 0.3194,-0.0087 0.3143,0.0053 0.3080,0.0193 0.3006,0.0333 0.2920,0.0474 0.2824,0.0614 0.2716,0.0754 0.2598,0.0894 0.2469,0.1032 0.2330,0.1168 0.2182,0.1303 0.2024,0.1436 0.1857,0.1567 0.1681,0.1695 0.1497,0.1820 0.1305,0.1941 0.1105,0.2060 0.0899,0.2174 0.0686,0.2285 0.0466,0.2391 0.0242,0.2493 0.0012,0.2590 -0.0222,0.2682 -0.0461,0.2769 -0.0703,0.2851 -0.0948,0.2927 -0.1195,0.2998 -0.1444,0.3062 -0.1694,0.3121 -0.1945,0.3173 -0.2196,0.3219 -0.2447,0.3259 -0.2697,0.3292 -0.2945,0.3319 -0.3191,0.3340 -0.3435,0.3353 -0.3675,0.3360 -0.3911,0.3360 -0.4143,0.3354 -0.4371,0.3341 -0.4593,0.3321 -0.4809,0.3295 -0.5019,0.3262 -0.5222,0.3223 -0.5418,0.3177 -0.5606,0.3125 -0.5786,0.3067 -0.5957,0.3003 -0.6120,0.2933 -0.6273,0.2858 -0.6417,0.2776 -0.6551,0.2690 -0.6674,0.2598 -0.6787,0.2501 -0.6890,0.2400 -0.6981,0.2294 -0.7061,0.2184 -0.7129,0.2070 -0.7186,0.1952 -0.7232,0.1830 -0.7265,0.1705 -0.7287,0.1578 -0.7297,0.1447 -0.7295,0.1315 -0.7281,0.1180 -0.7255,0.1043 -0.7217,0.0905 -0.7168,0.0766 -0.7106,0.0626 -0.7034,0.0486 -0.6950,0.0345 -0.6855,0.0205 -0.6749,0.0064 -0.6632,-0.0075 -0.6505,-0.0213 -0.6367,-0.0350 -0.6220,-0.0485 -0.6064,-0.0618 -0.5898,-0.0749 -0.5723,-0.0878 -0.5540,-0.1003 -0.5349,-0.1125 -0.5151,-0.1244 -0.4945,-0.1359 -0.4733,-0.1471 -0.4515,-0.1577 -0.4291,-0.1680 -0.4062,-0.1778 -0.3828,-0.1871 -0.3590,-0.1958 -0.3349,-0.2041 -0.3104,-0.2118 -0.2858,-0.2189 -0.2609,-0.2255 -0.2359,-0.2314 -0.2108,-0.2367 -0.1856,-0.2414 -0.1606,-0.2455 -0.1356,-0.2489"/></g><g stroke-width="0.0020" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="none"><polyline points="0.1454,-0.2365 0.1196,-0.2426 0.0926,-0.2476 0.0644,-0.2515 0.0351,-0.2543 0.0049,-0.2558 -0.0261,-0.2562 -0.0578,-0.2555 -0.0900,-0.2535 -0.1227,-0.2505 -0.1557,-0.2462 -0.1889,-0.2409 -0.2221,-0.2344 -0.2553,-0.2268 -0.2882,-0.2182 -0.3208,-0.2086 -0.3529,-0.1980 -0.3844,-0.1865 -0.4152,-0.1740 -0.4451,-0.1607 -0.4741,-0.1467 -0.5020,-0.1319 -0.5287,-0.1164 -0.5541,-0.1003 -0.5781,-0.0836 -0.6007,-0.0665 -0.6216,-0.0489 -0.6409,-0.0310 -0.6585,-0.0128 -0.6742,0.0056 -0.6881,0.0242 -0.7000,0.0428 -0.7100,0.0614 -0.7180,0.0799 -0.7239,0.0982 -0.7278,0.1163 -0.7296,0.1341 -0.7293,0.1516 -0.7269,0.1686 -0.7225,0.1851 -0.7160,0.2010 -0.7074,0.2163 -0.6969,0.2309 -0.6844,0.2447 -0.6700,0.2578 -0.6537,0.2699 -0.6356,0.2812 -0.6159,0.2915 -0.5945,0.3008 -0.5715,0.3091 -0.5471,0.3163 -0.5213,0.3225 -0.4942,0.3275 -0.4660,0.3314 -0.4368,0.3341 -0.4066,0.3357 -0.3756,0.3361 -0.3439,0.3353 -0.3116,0.3334 -0.2789,0.3303 -0.2459,0.3261 -0.2128,0.3207 -0.1795,0.3143 -0.1464,0.3067 -0.1135,0.2981 -0.0809,0.2885 -0.0488,0.2779 -0.0173,0.2663 0.0135,0.2539 0.0435,0.2406 0.0724,0.2265 0.1003,0.2117 0.1270,0.1962 0.1525,0.1801 0.1765,0.1635 0.1990,0.1463 0.2200,0.1288 0.2392,0.1108 0.2568,0.0926 0.2726,0.0742 0.2864,0.0557 0.2984,0.0371 0.3084,0.0185 0.3164,0 0.3223,-0.0183 0.3262,-0.0365 0.3280,-0.0543 0.3277,-0.0717 0.3253,-0.0887 0.3208,-0.1052 0.3143,-0.1212 0.3058,-0.1364 0.2952,-0.1510 0.2827,-0.1649 0.2683,-0.1779 0.2520,-0.1901 0.2340,-0.2013 0.2142,-0.2117 0.1928,-0.2210 0.1699,-0.2293 0.1454,-0.2365"/></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="-0.2008" cy="0.0399" r="0.0150"/></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(100%, 71%, 35%)" fill-opacity="0.2"><rect width="0.0300" height="0.0300" x="0.3111" y="-0.0512"/><rect width="0.0300" height="0.0300" x="-0.1506" y="-0.2639"/></g><g stroke-width="0.0020" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" fill="rgb(53%, 51%, 28%)" fill-opacity="0.00"><rect width="1.0559" height="0.5851" x="-0.7297" y="-0.2489"/></g><g stroke-width="0.0050" stroke="rgb(21%, 29%, 7%)" stroke-opacity="1.0" fill="none" stroke-linecap="round" stroke-dasharray="0.0300 0.0100"><polyline points="0.1454,-0.2365 -0.5471,0.3163"/></g><g stroke-width="0.0050" stroke="rgb(73%, 34%, 1%)" stroke-opacity="1.0" fill="none" stroke-linecap="round" stroke-dasharray="0.0300 0.0100"><polyline points="-0.6007,-0.0665 0.1990,0.1463"/></g></g></g><g class="hud"><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.3850" height="0.7447" x="-0.8281" y="-0.3553"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><g transform="rotate(-90.0, -0.8489, 0.3894)"><polyline points="-0.8489,0.4044
 -0.8489,0.3744"/></g><g transform="rotate(-90.0, -0.8489, 0.2830)"><polyline points="-0.8489,0.2980
 -0.8489,0.2680"/></g><g transform="rotate(-90.0, -0.8489, 0.1766)"><polyline points="-0.8489,0.1916
 -0.8489,0.1616"/></g><g transform="rotate(-90.0, -0.8489, 0.0702)"><polyline points="-0.8489,0.0852
@@ -30,11 +30,11 @@
 -0.8489,-0.0512"/></g><g transform="rotate(-90.0, -0.8489, -0.1426)"><polyline points="-0.8489,-0.1276
 -0.8489,-0.1576"/></g><g transform="rotate(-90.0, -0.8489, -0.2489)"><polyline points="-0.8489,-0.2339
 -0.8489,-0.2639"/></g><g transform="rotate(-90.0, -0.8489, -0.3553)"><polyline points="-0.8489,-0.3403
--0.8489,-0.3703"/></g></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0346" stroke="none" stroke-width="0.0" text-anchor="end"><text x="-0.8738" y="0.3996">-2.0</text><text x="-0.8738" y="0.2933">-1.5</text><text x="-0.8738" y="0.1869">-1.0</text><text x="-0.8738" y="0.0805">-0.5</text><text x="-0.8738" y="-0.0259"> 0.0</text><text x="-0.8738" y="-0.1323"> 0.5</text><text x="-0.8738" y="-0.2387"> 1.0</text><text x="-0.8738" y="-0.3451"> 1.5</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.8281,0.3894 0.5570,0.3894"/><polyline points="-0.8281,0.2830 0.5570,0.2830"/><polyline points="-0.8281,0.1766 0.5570,0.1766"/><polyline points="-0.8281,0.0702 0.5570,0.0702"/><polyline points="-0.8281,-0.0362 0.5570,-0.0362"/><polyline points="-0.8281,-0.1426 0.5570,-0.1426"/><polyline points="-0.8281,-0.2489 0.5570,-0.2489"/><polyline points="-0.8281,-0.3553 0.5570,-0.3553"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.7477" width="0.0028" x="-0.8378" y="-0.3568"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.8281,0.4267
+-0.8489,-0.3703"/></g></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0346" text-anchor="end"><text x="-0.8738" y="0.3996">-2.0</text><text x="-0.8738" y="0.2933">-1.5</text><text x="-0.8738" y="0.1869">-1.0</text><text x="-0.8738" y="0.0805">-0.5</text><text x="-0.8738" y="-0.0259"> 0.0</text><text x="-0.8738" y="-0.1323"> 0.5</text><text x="-0.8738" y="-0.2387"> 1.0</text><text x="-0.8738" y="-0.3451"> 1.5</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.8281,0.3894 0.5570,0.3894"/><polyline points="-0.8281,0.2830 0.5570,0.2830"/><polyline points="-0.8281,0.1766 0.5570,0.1766"/><polyline points="-0.8281,0.0702 0.5570,0.0702"/><polyline points="-0.8281,-0.0362 0.5570,-0.0362"/><polyline points="-0.8281,-0.1426 0.5570,-0.1426"/><polyline points="-0.8281,-0.2489 0.5570,-0.2489"/><polyline points="-0.8281,-0.3553 0.5570,-0.3553"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.0028" height="0.7477" x="-0.8378" y="-0.3568"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.8281,0.4267
 -0.8281,0.3967"/><polyline points="-0.5972,0.4267
 -0.5972,0.3967"/><polyline points="-0.3664,0.4267
 -0.3664,0.3967"/><polyline points="-0.1356,0.4267
 -0.1356,0.3967"/><polyline points="0.0953,0.4267
 0.0953,0.3967"/><polyline points="0.3261,0.4267
 0.3261,0.3967"/><polyline points="0.5570,0.4267
-0.5570,0.3967"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0346" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.8281" y="0.4590">-2.0</text><text x="-0.5972" y="0.4590">-1.0</text><text x="-0.3664" y="0.4590">-0.5</text><text x="-0.1356" y="0.4590"> 0.0</text><text x="0.0953" y="0.4590"> 0.5</text><text x="0.3261" y="0.4590"> 1.0</text><text x="0.5570" y="0.4590"> 2.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.8281,0.3894 -0.8281,-0.3553"/><polyline points="-0.5972,0.3894 -0.5972,-0.3553"/><polyline points="-0.3664,0.3894 -0.3664,-0.3553"/><polyline points="-0.1356,0.3894 -0.1356,-0.3553"/><polyline points="0.0953,0.3894 0.0953,-0.3553"/><polyline points="0.3261,0.3894 0.3261,-0.3553"/><polyline points="0.5570,0.3894 0.5570,-0.3553"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0030" width="1.3878" x="-0.8295" y="0.3969"/></g></g></g><g class="legend"><g class="legendBorder"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0025"><rect height="0.4357" width="0.2926" x="0.6401" y="-0.3489"/></g></g><g class="legendContent"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0346" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.6574" y="0.0570">Bounding Box</text></g><g fill="rgb(53%, 51%, 28%)" fill-opacity="0.00" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" stroke-width="0.0025"><rect height="0.0186" width="0.0173" x="0.8790" y="0.0384"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0346" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.6574" y="-0.0026">Endpoints</text></g><g fill="rgb(100%, 71%, 35%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><rect height="0.0250" width="0.0250" x="0.8751" y="-0.0244"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0346" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.6574" y="-0.0622">Centroid</text></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.8876" cy="-0.0715" r="0.0125"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0346" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.6574" y="-0.1218">Arc</text></g><g fill="none" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" stroke-width="0.0050"><polyline points="0.8790,-0.1311 0.9136,-0.1311"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0346" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.6574" y="-0.1813">Full Ellipse</text></g><g fill="none" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0020"><polyline points="0.8790,-0.1907 0.9136,-0.1907"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0346" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.6574" y="-0.2409">Minor Axis</text></g><g fill="none" stroke="rgb(73%, 34%, 1%)" stroke-dasharray="0.0300 0.0100" stroke-linecap="round" stroke-opacity="1.0" stroke-width="0.0050"><polyline points="0.8790,-0.2502 0.9136,-0.2502"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0346" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.6574" y="-0.3005">Major Axis</text></g><g fill="none" stroke="rgb(21%, 29%, 7%)" stroke-dasharray="0.0300 0.0100" stroke-linecap="round" stroke-opacity="1.0" stroke-width="0.0050"><polyline points="0.8790,-0.3098 0.9136,-0.3098"/></g></g></g><g class="title"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0554" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="0" y="-0.4225">ArcPosition (Point 1 0) (Point 0 1) (ArcInfo (Point 1.5 1) (pi / 3) True True)</text></g></g><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="1.0" width="2.0" x="-1.0" y="-0.5"/></g></g></g></svg>
+0.5570,0.3967"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0346" text-anchor="middle"><text x="-0.8281" y="0.4590">-2.0</text><text x="-0.5972" y="0.4590">-1.0</text><text x="-0.3664" y="0.4590">-0.5</text><text x="-0.1356" y="0.4590"> 0.0</text><text x="0.0953" y="0.4590"> 0.5</text><text x="0.3261" y="0.4590"> 1.0</text><text x="0.5570" y="0.4590"> 2.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.8281,0.3894 -0.8281,-0.3553"/><polyline points="-0.5972,0.3894 -0.5972,-0.3553"/><polyline points="-0.3664,0.3894 -0.3664,-0.3553"/><polyline points="-0.1356,0.3894 -0.1356,-0.3553"/><polyline points="0.0953,0.3894 0.0953,-0.3553"/><polyline points="0.3261,0.3894 0.3261,-0.3553"/><polyline points="0.5570,0.3894 0.5570,-0.3553"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="1.3878" height="0.0030" x="-0.8295" y="0.3969"/></g></g></g><g class="legend"><g class="legendBorder"><g stroke-width="0.0025" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(5%, 5%, 5%)" fill-opacity="0"><rect width="0.2926" height="0.4357" x="0.6401" y="-0.3489"/></g></g><g class="legendContent"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0346" text-anchor="start"><text x="0.6574" y="0.0570">Bounding Box</text></g><g stroke-width="0.0025" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" fill="rgb(53%, 51%, 28%)" fill-opacity="0.00"><rect width="0.0173" height="0.0186" x="0.8790" y="0.0384"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0346" text-anchor="start"><text x="0.6574" y="-0.0026">Endpoints</text></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(100%, 71%, 35%)" fill-opacity="0.2"><rect width="0.0250" height="0.0250" x="0.8751" y="-0.0244"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0346" text-anchor="start"><text x="0.6574" y="-0.0622">Centroid</text></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="0.8876" cy="-0.0715" r="0.0125"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0346" text-anchor="start"><text x="0.6574" y="-0.1218">Arc</text></g><g stroke-width="0.0050" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" fill="none"><polyline points="0.8790,-0.1311 0.9136,-0.1311"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0346" text-anchor="start"><text x="0.6574" y="-0.1813">Full Ellipse</text></g><g stroke-width="0.0020" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="none"><polyline points="0.8790,-0.1907 0.9136,-0.1907"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0346" text-anchor="start"><text x="0.6574" y="-0.2409">Minor Axis</text></g><g stroke-width="0.0050" stroke="rgb(73%, 34%, 1%)" stroke-opacity="1.0" fill="none" stroke-linecap="round" stroke-dasharray="0.0300 0.0100"><polyline points="0.8790,-0.2502 0.9136,-0.2502"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0346" text-anchor="start"><text x="0.6574" y="-0.3005">Major Axis</text></g><g stroke-width="0.0050" stroke="rgb(21%, 29%, 7%)" stroke-opacity="1.0" fill="none" stroke-linecap="round" stroke-dasharray="0.0300 0.0100"><polyline points="0.8790,-0.3098 0.9136,-0.3098"/></g></g></g><g class="title"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0554" text-anchor="middle"><text x="0" y="-0.4225">ArcPosition (Point 1 0) (Point 0 1) (ArcInfo (Point 1.5 1) (pi / 3) True True)</text></g></g><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="2.0" height="1.0" x="-1.0" y="-0.5"/></g></g></g></svg>
diff --git a/other/glyphs.svg b/other/glyphs.svg
--- a/other/glyphs.svg
+++ b/other/glyphs.svg
@@ -1,4 +1,4 @@
-<svg height="50" viewBox="-6.0 -0.5378 12.0 1.0378" width="578" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="578" height="50" viewBox="-6.0 -0.5378 12.0 1.0378"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,6 +22,6 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"><g class="glyphs"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0200"><circle cx="-5.59" cy="0.0378" r="0.4"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0200"><rect height="0.8" width="0.8000" x="-4.5925" y="-0.3622"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0200"><rect height="0.6000" width="0.8000" x="-3.195" y="-0.2622"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0200"><rect height="0.6000" rx="0.0100" ry="0.0100" width="0.8000" x="-1.7975" y="-0.2622"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0200"><ellipse cx="0.0" cy="3.784271247461907e-2" rx="0.4" ry="0.30000000000000004"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0200"><polyline points="1.3975,0.4378
-1.3975,-0.3622"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0200"><polyline points="2.395,0.0378
-3.195,0.0378"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0200"><polygon points="0,-0.5657 -0.4000,0.3464 0.4000,0.3464" transform="translate(4.1925, 0.0378)"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0250"><path d="M 0.5,-0.3660 A 1.0 1.0 -0.0 0 1 0,0.5 A 1.0 1.0 -0.0 0 1 -0.5,-0.3660 A 1.0 1.0 -0.0 0 1 0.5,-0.3660 L 0.5,-0.3660 Z" transform="translate(5.59, 0.0378) scale(0.8)"/></g></g></g><g class="hud"/></svg>
+}</style><g class="chart"><g class="glyphs"><g stroke-width="0.0200" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="-5.59" cy="0.0378" r="0.4"/></g><g stroke-width="0.0200" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><rect width="0.8000" height="0.8" x="-4.5925" y="-0.3622"/></g><g stroke-width="0.0200" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><rect width="0.8000" height="0.6000" x="-3.195" y="-0.2622"/></g><g stroke-width="0.0200" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><rect width="0.8000" height="0.6000" x="-1.7975" y="-0.2622" rx="0.0100" ry="0.0100"/></g><g stroke-width="0.0200" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><ellipse cx="0.0" cy="3.784271247461907e-2" rx="0.4" ry="0.30000000000000004"/></g><g stroke-width="0.0200" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><polyline points="1.3975,0.4378
+1.3975,-0.3622"/></g><g stroke-width="0.0200" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><polyline points="2.395,0.0378
+3.195,0.0378"/></g><g stroke-width="0.0200" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><polygon transform="translate(4.1925, 0.0378)" points="0,-0.5657 -0.4000,0.3464 0.4000,0.3464"/></g><g stroke-width="0.0250" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><path d="M 0.5,-0.3660 A 1.0 1.0 -0.0 0 1 0,0.5 A 1.0 1.0 -0.0 0 1 -0.5,-0.3660 A 1.0 1.0 -0.0 0 1 0.5,-0.3660 L 0.5,-0.3660 Z" transform="translate(5.59, 0.0378) scale(0.8)"/></g></g></g><g class="hud"></g></svg>
diff --git a/other/gradient.svg b/other/gradient.svg
--- a/other/gradient.svg
+++ b/other/gradient.svg
@@ -1,4 +1,4 @@
-<svg height="100" viewBox="-3.0 -0.5 6.0 1.0" width="600" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="600" height="100" viewBox="-3.0 -0.5 6.0 1.0"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,4 +22,4 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}svg { shape-rendering: crispEdges; }</style><g class="chart"><g class="gradient"><g fill="rgb(60%, 26%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-2.9013" y="-0.3402"/></g><g fill="rgb(60%, 26%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-2.8433" y="-0.3402"/></g><g fill="rgb(60%, 26%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-2.7852" y="-0.3402"/></g><g fill="rgb(61%, 26%, 32%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-2.7272" y="-0.3402"/></g><g fill="rgb(61%, 26%, 30%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-2.6692" y="-0.3402"/></g><g fill="rgb(61%, 26%, 29%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-2.6112" y="-0.3402"/></g><g fill="rgb(61%, 26%, 27%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-2.5531" y="-0.3402"/></g><g fill="rgb(61%, 26%, 25%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-2.4951" y="-0.3402"/></g><g fill="rgb(61%, 27%, 23%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-2.4371" y="-0.3402"/></g><g fill="rgb(61%, 27%, 21%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-2.3791" y="-0.3402"/></g><g fill="rgb(61%, 27%, 18%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-2.3210" y="-0.3402"/></g><g fill="rgb(61%, 28%, 16%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-2.2630" y="-0.3402"/></g><g fill="rgb(60%, 28%, 14%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-2.2050" y="-0.3402"/></g><g fill="rgb(60%, 29%, 11%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-2.1470" y="-0.3402"/></g><g fill="rgb(59%, 29%, 8%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-2.0889" y="-0.3402"/></g><g fill="rgb(59%, 30%, 5%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-2.0309" y="-0.3402"/></g><g fill="rgb(58%, 31%, 0%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-1.9729" y="-0.3402"/></g><g fill="rgb(58%, 31%, -4%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-1.9149" y="-0.3402"/></g><g fill="rgb(57%, 32%, -7%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-1.8568" y="-0.3402"/></g><g fill="rgb(56%, 33%, -10%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-1.7988" y="-0.3402"/></g><g fill="rgb(55%, 33%, -13%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-1.7408" y="-0.3402"/></g><g fill="rgb(54%, 34%, -15%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-1.6827" y="-0.3402"/></g><g fill="rgb(53%, 35%, -17%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-1.6247" y="-0.3402"/></g><g fill="rgb(52%, 36%, -18%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-1.5667" y="-0.3402"/></g><g fill="rgb(51%, 36%, -18%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-1.5087" y="-0.3402"/></g><g fill="rgb(49%, 37%, -19%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-1.4506" y="-0.3402"/></g><g fill="rgb(48%, 38%, -18%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-1.3926" y="-0.3402"/></g><g fill="rgb(47%, 38%, -18%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-1.3346" y="-0.3402"/></g><g fill="rgb(45%, 39%, -16%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-1.2766" y="-0.3402"/></g><g fill="rgb(43%, 40%, -15%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-1.2185" y="-0.3402"/></g><g fill="rgb(42%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-1.1605" y="-0.3402"/></g><g fill="rgb(40%, 41%, -10%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-1.1025" y="-0.3402"/></g><g fill="rgb(38%, 42%, -7%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-1.0445" y="-0.3402"/></g><g fill="rgb(36%, 42%, -3%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-0.9864" y="-0.3402"/></g><g fill="rgb(34%, 43%, 2%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-0.9284" y="-0.3402"/></g><g fill="rgb(32%, 43%, 6%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-0.8704" y="-0.3402"/></g><g fill="rgb(30%, 44%, 10%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-0.8124" y="-0.3402"/></g><g fill="rgb(28%, 44%, 13%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-0.7543" y="-0.3402"/></g><g fill="rgb(25%, 45%, 15%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-0.6963" y="-0.3402"/></g><g fill="rgb(22%, 45%, 18%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-0.6383" y="-0.3402"/></g><g fill="rgb(19%, 46%, 20%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-0.5803" y="-0.3402"/></g><g fill="rgb(16%, 46%, 22%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-0.5222" y="-0.3402"/></g><g fill="rgb(11%, 46%, 24%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-0.4642" y="-0.3402"/></g><g fill="rgb(5%, 46%, 26%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-0.4062" y="-0.3402"/></g><g fill="rgb(-5%, 47%, 28%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-0.3482" y="-0.3402"/></g><g fill="rgb(-14%, 47%, 30%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-0.2901" y="-0.3402"/></g><g fill="rgb(-23%, 47%, 32%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-0.2321" y="-0.3402"/></g><g fill="rgb(-30%, 47%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-0.1741" y="-0.3402"/></g><g fill="rgb(-37%, 47%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-0.1161" y="-0.3402"/></g><g fill="rgb(-43%, 47%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="-0.0580" y="-0.3402"/></g><g fill="rgb(-48%, 47%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="0" y="-0.3402"/></g><g fill="rgb(-52%, 47%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="0.0580" y="-0.3402"/></g><g fill="rgb(-56%, 47%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="0.1161" y="-0.3402"/></g><g fill="rgb(-58%, 47%, 45%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="0.1741" y="-0.3402"/></g><g fill="rgb(-60%, 47%, 47%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="0.2321" y="-0.3402"/></g><g fill="rgb(-60%, 46%, 49%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="0.2901" y="-0.3402"/></g><g fill="rgb(-60%, 46%, 50%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="0.3482" y="-0.3402"/></g><g fill="rgb(-59%, 46%, 52%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="0.4062" y="-0.3402"/></g><g fill="rgb(-57%, 46%, 53%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="0.4642" y="-0.3402"/></g><g fill="rgb(-54%, 45%, 54%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="0.5222" y="-0.3402"/></g><g fill="rgb(-50%, 45%, 56%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="0.5803" y="-0.3402"/></g><g fill="rgb(-46%, 44%, 57%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="0.6383" y="-0.3402"/></g><g fill="rgb(-41%, 44%, 58%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="0.6963" y="-0.3402"/></g><g fill="rgb(-35%, 44%, 59%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="0.7543" y="-0.3402"/></g><g fill="rgb(-28%, 43%, 60%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="0.8124" y="-0.3402"/></g><g fill="rgb(-20%, 43%, 61%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="0.8704" y="-0.3402"/></g><g fill="rgb(-12%, 42%, 62%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="0.9284" y="-0.3402"/></g><g fill="rgb(-4%, 41%, 63%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="0.9864" y="-0.3402"/></g><g fill="rgb(6%, 41%, 64%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="1.0445" y="-0.3402"/></g><g fill="rgb(11%, 40%, 64%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="1.1025" y="-0.3402"/></g><g fill="rgb(15%, 40%, 65%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="1.1605" y="-0.3402"/></g><g fill="rgb(19%, 39%, 65%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="1.2185" y="-0.3402"/></g><g fill="rgb(21%, 38%, 65%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="1.2766" y="-0.3402"/></g><g fill="rgb(24%, 38%, 66%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="1.3346" y="-0.3402"/></g><g fill="rgb(26%, 37%, 66%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="1.3926" y="-0.3402"/></g><g fill="rgb(29%, 37%, 66%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="1.4506" y="-0.3402"/></g><g fill="rgb(31%, 36%, 65%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="1.5087" y="-0.3402"/></g><g fill="rgb(33%, 35%, 65%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="1.5667" y="-0.3402"/></g><g fill="rgb(35%, 35%, 65%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="1.6247" y="-0.3402"/></g><g fill="rgb(36%, 34%, 64%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="1.6827" y="-0.3402"/></g><g fill="rgb(38%, 34%, 64%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="1.7408" y="-0.3402"/></g><g fill="rgb(40%, 33%, 63%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="1.7988" y="-0.3402"/></g><g fill="rgb(41%, 32%, 63%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="1.8568" y="-0.3402"/></g><g fill="rgb(43%, 32%, 62%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="1.9149" y="-0.3402"/></g><g fill="rgb(44%, 31%, 61%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="1.9729" y="-0.3402"/></g><g fill="rgb(46%, 31%, 60%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="2.0309" y="-0.3402"/></g><g fill="rgb(47%, 30%, 59%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="2.0889" y="-0.3402"/></g><g fill="rgb(48%, 30%, 58%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="2.1470" y="-0.3402"/></g><g fill="rgb(49%, 29%, 56%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="2.2050" y="-0.3402"/></g><g fill="rgb(51%, 29%, 55%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="2.2630" y="-0.3402"/></g><g fill="rgb(52%, 28%, 54%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="2.3210" y="-0.3402"/></g><g fill="rgb(53%, 28%, 52%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="2.3791" y="-0.3402"/></g><g fill="rgb(54%, 28%, 51%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="2.4371" y="-0.3402"/></g><g fill="rgb(55%, 27%, 50%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="2.4951" y="-0.3402"/></g><g fill="rgb(56%, 27%, 48%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="2.5531" y="-0.3402"/></g><g fill="rgb(56%, 27%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="2.6112" y="-0.3402"/></g><g fill="rgb(57%, 26%, 45%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="2.6692" y="-0.3402"/></g><g fill="rgb(58%, 26%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="2.7272" y="-0.3402"/></g><g fill="rgb(58%, 26%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="2.7852" y="-0.3402"/></g><g fill="rgb(59%, 26%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.6803" width="0.0580" x="2.8433" y="-0.3402"/></g></g><g class="border"><g fill="rgb(0%, 0%, 0%)" fill-opacity="0" stroke="rgb(94%, 94%, 94%)" stroke-opacity="1.0" stroke-width="0.0200"><rect height="0.8164" width="0.2321" x="-0.9703" y="-0.4082"/></g></g></g><g class="hud"><g class="frame"><g fill="rgb(0%, 0%, 0%)" fill-opacity="0" stroke="rgb(99%, 99%, 99%)" stroke-opacity="1.0" stroke-width="0.0040"><rect height="0.996" width="5.996" x="-2.998" y="-0.498"/></g></g></g></svg>
+}svg { shape-rendering: crispEdges; }</style><g class="chart"><g class="gradient"><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(60%, 26%, 38%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-2.9013" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(60%, 26%, 36%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-2.8433" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(60%, 26%, 34%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-2.7852" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 26%, 32%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-2.7272" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 26%, 30%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-2.6692" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 26%, 29%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-2.6112" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 26%, 27%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-2.5531" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 26%, 25%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-2.4951" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 27%, 23%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-2.4371" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 27%, 21%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-2.3791" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 27%, 18%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-2.3210" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 28%, 16%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-2.2630" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(60%, 28%, 14%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-2.2050" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(60%, 29%, 11%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-2.1470" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(59%, 29%, 8%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-2.0889" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(59%, 30%, 5%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-2.0309" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(58%, 31%, 0%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-1.9729" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(58%, 31%, -4%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-1.9149" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(57%, 32%, -7%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-1.8568" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(56%, 33%, -10%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-1.7988" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(55%, 33%, -13%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-1.7408" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(54%, 34%, -15%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-1.6827" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 35%, -17%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-1.6247" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(52%, 36%, -18%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-1.5667" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(51%, 36%, -18%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-1.5087" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 37%, -19%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-1.4506" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(48%, 38%, -18%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-1.3926" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 38%, -18%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-1.3346" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 39%, -16%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-1.2766" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 40%, -15%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-1.2185" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-1.1605" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 41%, -10%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-1.1025" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 42%, -7%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-1.0445" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 42%, -3%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-0.9864" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 43%, 2%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-0.9284" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(32%, 43%, 6%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-0.8704" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(30%, 44%, 10%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-0.8124" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(28%, 44%, 13%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-0.7543" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(25%, 45%, 15%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-0.6963" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(22%, 45%, 18%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-0.6383" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(19%, 46%, 20%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-0.5803" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(16%, 46%, 22%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-0.5222" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(11%, 46%, 24%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-0.4642" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(5%, 46%, 26%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-0.4062" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-5%, 47%, 28%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-0.3482" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-14%, 47%, 30%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-0.2901" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-23%, 47%, 32%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-0.2321" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-30%, 47%, 34%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-0.1741" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-37%, 47%, 36%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-0.1161" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-43%, 47%, 38%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="-0.0580" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-48%, 47%, 40%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="0" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-52%, 47%, 42%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="0.0580" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-56%, 47%, 43%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="0.1161" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-58%, 47%, 45%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="0.1741" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-60%, 47%, 47%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="0.2321" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-60%, 46%, 49%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="0.2901" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-60%, 46%, 50%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="0.3482" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-59%, 46%, 52%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="0.4062" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-57%, 46%, 53%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="0.4642" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-54%, 45%, 54%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="0.5222" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-50%, 45%, 56%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="0.5803" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-46%, 44%, 57%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="0.6383" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-41%, 44%, 58%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="0.6963" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-35%, 44%, 59%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="0.7543" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-28%, 43%, 60%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="0.8124" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-20%, 43%, 61%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="0.8704" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-12%, 42%, 62%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="0.9284" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(-4%, 41%, 63%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="0.9864" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(6%, 41%, 64%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="1.0445" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(11%, 40%, 64%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="1.1025" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(15%, 40%, 65%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="1.1605" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(19%, 39%, 65%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="1.2185" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(21%, 38%, 65%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="1.2766" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(24%, 38%, 66%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="1.3346" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(26%, 37%, 66%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="1.3926" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(29%, 37%, 66%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="1.4506" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(31%, 36%, 65%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="1.5087" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(33%, 35%, 65%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="1.5667" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 35%, 65%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="1.6247" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 34%, 64%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="1.6827" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 34%, 64%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="1.7408" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 33%, 63%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="1.7988" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 32%, 63%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="1.8568" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 32%, 62%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="1.9149" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 31%, 61%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="1.9729" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 31%, 60%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="2.0309" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 30%, 59%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="2.0889" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(48%, 30%, 58%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="2.1470" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 29%, 56%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="2.2050" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(51%, 29%, 55%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="2.2630" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(52%, 28%, 54%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="2.3210" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 28%, 52%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="2.3791" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(54%, 28%, 51%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="2.4371" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(55%, 27%, 50%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="2.4951" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(56%, 27%, 48%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="2.5531" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(56%, 27%, 46%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="2.6112" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(57%, 26%, 45%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="2.6692" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(58%, 26%, 43%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="2.7272" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(58%, 26%, 41%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="2.7852" y="-0.3402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(59%, 26%, 40%)" fill-opacity="1.0"><rect width="0.0580" height="0.6803" x="2.8433" y="-0.3402"/></g></g><g class="border"><g stroke-width="0.0200" stroke="rgb(94%, 94%, 94%)" stroke-opacity="1.0" fill="rgb(0%, 0%, 0%)" fill-opacity="0"><rect width="0.2321" height="0.8164" x="-0.9703" y="-0.4082"/></g></g></g><g class="hud"><g class="frame"><g stroke-width="0.0040" stroke="rgb(99%, 99%, 99%)" stroke-opacity="1.0" fill="rgb(0%, 0%, 0%)" fill-opacity="0"><rect width="5.996" height="0.996" x="-2.998" y="-0.498"/></g></g></g></svg>
diff --git a/other/hudoptions.svg b/other/hudoptions.svg
--- a/other/hudoptions.svg
+++ b/other/hudoptions.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.75 -0.5 1.5 1.0" width="450" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="450" height="300" viewBox="-0.75 -0.5 1.5 1.0"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,7 +22,7 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"/><g class="hud"><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.8232" width="1.2633" x="-0.5849" y="-0.4455"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><g transform="rotate(-90.0, -0.6102, 0.3778)"><polyline points="-0.6102,0.3928
+}</style><g class="chart"></g><g class="hud"><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.2633" height="0.8232" x="-0.5849" y="-0.4455"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><g transform="rotate(-90.0, -0.6102, 0.3778)"><polyline points="-0.6102,0.3928
 -0.6102,0.3628"/></g><g transform="rotate(-90.0, -0.6102, 0.2954)"><polyline points="-0.6102,0.3104
 -0.6102,0.2804"/></g><g transform="rotate(-90.0, -0.6102, 0.2131)"><polyline points="-0.6102,0.2281
 -0.6102,0.1981"/></g><g transform="rotate(-90.0, -0.6102, 0.1308)"><polyline points="-0.6102,0.1458
@@ -33,7 +33,7 @@
 -0.6102,-0.2135"/></g><g transform="rotate(-90.0, -0.6102, -0.2808)"><polyline points="-0.6102,-0.2658
 -0.6102,-0.2958"/></g><g transform="rotate(-90.0, -0.6102, -0.3631)"><polyline points="-0.6102,-0.3481
 -0.6102,-0.3781"/></g><g transform="rotate(-90.0, -0.6102, -0.4455)"><polyline points="-0.6102,-0.4305
--0.6102,-0.4605"/></g></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0421" stroke="none" stroke-width="0.0" text-anchor="end"><text x="-0.6405" y="0.3891">-0.5</text><text x="-0.6405" y="0.3068">-0.4</text><text x="-0.6405" y="0.2244">-0.3</text><text x="-0.6405" y="0.1421">-0.2</text><text x="-0.6405" y="0.0598">-0.1</text><text x="-0.6405" y="-0.0225"> 0.0</text><text x="-0.6405" y="-0.1049"> 0.1</text><text x="-0.6405" y="-0.1872"> 0.2</text><text x="-0.6405" y="-0.2695"> 0.3</text><text x="-0.6405" y="-0.3518"> 0.4</text><text x="-0.6405" y="-0.4341"> 0.5</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.5849,0.3778 0.6784,0.3778"/><polyline points="-0.5849,0.2954 0.6784,0.2954"/><polyline points="-0.5849,0.2131 0.6784,0.2131"/><polyline points="-0.5849,0.1308 0.6784,0.1308"/><polyline points="-0.5849,0.0485 0.6784,0.0485"/><polyline points="-0.5849,-0.0339 0.6784,-0.0339"/><polyline points="-0.5849,-0.1162 0.6784,-0.1162"/><polyline points="-0.5849,-0.1985 0.6784,-0.1985"/><polyline points="-0.5849,-0.2808 0.6784,-0.2808"/><polyline points="-0.5849,-0.3631 0.6784,-0.3631"/><polyline points="-0.5849,-0.4455 0.6784,-0.4455"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.8265" width="0.0034" x="-0.5967" y="-0.4471"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.5849,0.4174
+-0.6102,-0.4605"/></g></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0421" text-anchor="end"><text x="-0.6405" y="0.3891">-0.5</text><text x="-0.6405" y="0.3068">-0.4</text><text x="-0.6405" y="0.2244">-0.3</text><text x="-0.6405" y="0.1421">-0.2</text><text x="-0.6405" y="0.0598">-0.1</text><text x="-0.6405" y="-0.0225"> 0.0</text><text x="-0.6405" y="-0.1049"> 0.1</text><text x="-0.6405" y="-0.1872"> 0.2</text><text x="-0.6405" y="-0.2695"> 0.3</text><text x="-0.6405" y="-0.3518"> 0.4</text><text x="-0.6405" y="-0.4341"> 0.5</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.5849,0.3778 0.6784,0.3778"/><polyline points="-0.5849,0.2954 0.6784,0.2954"/><polyline points="-0.5849,0.2131 0.6784,0.2131"/><polyline points="-0.5849,0.1308 0.6784,0.1308"/><polyline points="-0.5849,0.0485 0.6784,0.0485"/><polyline points="-0.5849,-0.0339 0.6784,-0.0339"/><polyline points="-0.5849,-0.1162 0.6784,-0.1162"/><polyline points="-0.5849,-0.1985 0.6784,-0.1985"/><polyline points="-0.5849,-0.2808 0.6784,-0.2808"/><polyline points="-0.5849,-0.3631 0.6784,-0.3631"/><polyline points="-0.5849,-0.4455 0.6784,-0.4455"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.0034" height="0.8265" x="-0.5967" y="-0.4471"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.5849,0.4174
 -0.5849,0.3874"/><polyline points="-0.4586,0.4174
 -0.4586,0.3874"/><polyline points="-0.3323,0.4174
 -0.3323,0.3874"/><polyline points="-0.2059,0.4174
@@ -44,4 +44,4 @@
 0.2994,0.3874"/><polyline points="0.4257,0.4174
 0.4257,0.3874"/><polyline points="0.5521,0.4174
 0.5521,0.3874"/><polyline points="0.6784,0.4174
-0.6784,0.3874"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0421" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.5849" y="0.4547">-0.5</text><text x="-0.4586" y="0.4547">-0.4</text><text x="-0.3323" y="0.4547">-0.3</text><text x="-0.2059" y="0.4547">-0.2</text><text x="-0.0796" y="0.4547">-0.1</text><text x="0.0467" y="0.4547"> 0.0</text><text x="0.1731" y="0.4547"> 0.1</text><text x="0.2994" y="0.4547"> 0.2</text><text x="0.4257" y="0.4547"> 0.3</text><text x="0.5521" y="0.4547"> 0.4</text><text x="0.6784" y="0.4547"> 0.5</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.5849,0.3778 -0.5849,-0.4455"/><polyline points="-0.4586,0.3778 -0.4586,-0.4455"/><polyline points="-0.3323,0.3778 -0.3323,-0.4455"/><polyline points="-0.2059,0.3778 -0.2059,-0.4455"/><polyline points="-0.0796,0.3778 -0.0796,-0.4455"/><polyline points="0.0467,0.3778 0.0467,-0.4455"/><polyline points="0.1731,0.3778 0.1731,-0.4455"/><polyline points="0.2994,0.3778 0.2994,-0.4455"/><polyline points="0.4257,0.3778 0.4257,-0.4455"/><polyline points="0.5521,0.3778 0.5521,-0.4455"/><polyline points="0.6784,0.3778 0.6784,-0.4455"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0033" width="1.2667" x="-0.5866" y="0.3860"/></g></g></g><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="1.0" width="1.5" x="-0.75" y="-0.5"/></g></g></g></svg>
+0.6784,0.3874"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0421" text-anchor="middle"><text x="-0.5849" y="0.4547">-0.5</text><text x="-0.4586" y="0.4547">-0.4</text><text x="-0.3323" y="0.4547">-0.3</text><text x="-0.2059" y="0.4547">-0.2</text><text x="-0.0796" y="0.4547">-0.1</text><text x="0.0467" y="0.4547"> 0.0</text><text x="0.1731" y="0.4547"> 0.1</text><text x="0.2994" y="0.4547"> 0.2</text><text x="0.4257" y="0.4547"> 0.3</text><text x="0.5521" y="0.4547"> 0.4</text><text x="0.6784" y="0.4547"> 0.5</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.5849,0.3778 -0.5849,-0.4455"/><polyline points="-0.4586,0.3778 -0.4586,-0.4455"/><polyline points="-0.3323,0.3778 -0.3323,-0.4455"/><polyline points="-0.2059,0.3778 -0.2059,-0.4455"/><polyline points="-0.0796,0.3778 -0.0796,-0.4455"/><polyline points="0.0467,0.3778 0.0467,-0.4455"/><polyline points="0.1731,0.3778 0.1731,-0.4455"/><polyline points="0.2994,0.3778 0.2994,-0.4455"/><polyline points="0.4257,0.3778 0.4257,-0.4455"/><polyline points="0.5521,0.3778 0.5521,-0.4455"/><polyline points="0.6784,0.3778 0.6784,-0.4455"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="1.2667" height="0.0033" x="-0.5866" y="0.3860"/></g></g></g><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.5" height="1.0" x="-0.75" y="-0.5"/></g></g></g></svg>
diff --git a/other/line.svg b/other/line.svg
--- a/other/line.svg
+++ b/other/line.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.75 -0.5 1.5 1.0" width="450" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="450" height="300" viewBox="-0.75 -0.5 1.5 1.0"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,7 +22,7 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"><g class="line"><g fill="none" stroke="rgb(2%, 73%, 80%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="-0.6059,0.1875 -0.2077,0.1875 0.1905,-0.3537"/></g><g fill="none" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="-0.6059,0.3228 0.5091,-0.0831"/></g><g fill="none" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="-0.4068,-0.2184 -0.4068,0.3228"/></g></g></g><g class="hud"><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.6866" width="1.2006" x="-0.6118" y="-0.3588"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><g transform="rotate(-90.0, -0.6357, 0.3228)"><polyline points="-0.6357,0.3378
+}</style><g class="chart"><g class="line"><g stroke-width="0.0150" stroke="rgb(2%, 73%, 80%)" stroke-opacity="1.0" fill="none"><polyline points="-0.6059,0.1875 -0.2077,0.1875 0.1905,-0.3537"/></g><g stroke-width="0.0150" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="none"><polyline points="-0.6059,0.3228 0.5091,-0.0831"/></g><g stroke-width="0.0150" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" fill="none"><polyline points="-0.4068,-0.2184 -0.4068,0.3228"/></g></g></g><g class="hud"><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.2006" height="0.6866" x="-0.6118" y="-0.3588"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><g transform="rotate(-90.0, -0.6357, 0.3228)"><polyline points="-0.6357,0.3378
 -0.6357,0.3078"/></g><g transform="rotate(-90.0, -0.6357, 0.2551)"><polyline points="-0.6357,0.2701
 -0.6357,0.2401"/></g><g transform="rotate(-90.0, -0.6357, 0.1875)"><polyline points="-0.6357,0.2025
 -0.6357,0.1725"/></g><g transform="rotate(-90.0, -0.6357, 0.1198)"><polyline points="-0.6357,0.1348
@@ -33,11 +33,11 @@
 -0.6357,-0.1658"/></g><g transform="rotate(-90.0, -0.6357, -0.2184)"><polyline points="-0.6357,-0.2034
 -0.6357,-0.2334"/></g><g transform="rotate(-90.0, -0.6357, -0.2861)"><polyline points="-0.6357,-0.2711
 -0.6357,-0.3011"/></g><g transform="rotate(-90.0, -0.6357, -0.3537)"><polyline points="-0.6357,-0.3387
--0.6357,-0.3687"/></g></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" stroke="none" stroke-width="0.0" text-anchor="end"><text x="-0.6644" y="0.3321">0.0</text><text x="-0.6644" y="0.2644">0.5</text><text x="-0.6644" y="0.1968">1.0</text><text x="-0.6644" y="0.1291">1.5</text><text x="-0.6644" y="0.0615">2.0</text><text x="-0.6644" y="-0.0062">2.5</text><text x="-0.6644" y="-0.0738">3.0</text><text x="-0.6644" y="-0.1415">3.5</text><text x="-0.6644" y="-0.2091">4.0</text><text x="-0.6644" y="-0.2768">4.5</text><text x="-0.6644" y="-0.3444">5.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.6059,0.3228 0.5887,0.3228"/><polyline points="-0.6059,0.2551 0.5887,0.2551"/><polyline points="-0.6059,0.1875 0.5887,0.1875"/><polyline points="-0.6059,0.1198 0.5887,0.1198"/><polyline points="-0.6059,0.0522 0.5887,0.0522"/><polyline points="-0.6059,-0.0155 0.5887,-0.0155"/><polyline points="-0.6059,-0.0831 0.5887,-0.0831"/><polyline points="-0.6059,-0.1508 0.5887,-0.1508"/><polyline points="-0.6059,-0.2184 0.5887,-0.2184"/><polyline points="-0.6059,-0.2861 0.5887,-0.2861"/><polyline points="-0.6059,-0.3537 0.5887,-0.3537"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.6792" width="0.0032" x="-0.6230" y="-0.3551"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.6059,0.3631
+-0.6357,-0.3687"/></g></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" text-anchor="end"><text x="-0.6644" y="0.3321">0.0</text><text x="-0.6644" y="0.2644">0.5</text><text x="-0.6644" y="0.1968">1.0</text><text x="-0.6644" y="0.1291">1.5</text><text x="-0.6644" y="0.0615">2.0</text><text x="-0.6644" y="-0.0062">2.5</text><text x="-0.6644" y="-0.0738">3.0</text><text x="-0.6644" y="-0.1415">3.5</text><text x="-0.6644" y="-0.2091">4.0</text><text x="-0.6644" y="-0.2768">4.5</text><text x="-0.6644" y="-0.3444">5.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.6059,0.3228 0.5887,0.3228"/><polyline points="-0.6059,0.2551 0.5887,0.2551"/><polyline points="-0.6059,0.1875 0.5887,0.1875"/><polyline points="-0.6059,0.1198 0.5887,0.1198"/><polyline points="-0.6059,0.0522 0.5887,0.0522"/><polyline points="-0.6059,-0.0155 0.5887,-0.0155"/><polyline points="-0.6059,-0.0831 0.5887,-0.0831"/><polyline points="-0.6059,-0.1508 0.5887,-0.1508"/><polyline points="-0.6059,-0.2184 0.5887,-0.2184"/><polyline points="-0.6059,-0.2861 0.5887,-0.2861"/><polyline points="-0.6059,-0.3537 0.5887,-0.3537"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.0032" height="0.6792" x="-0.6230" y="-0.3551"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.6059,0.3631
 -0.6059,0.3331"/><polyline points="-0.4068,0.3631
 -0.4068,0.3331"/><polyline points="-0.2077,0.3631
 -0.2077,0.3331"/><polyline points="-0.0086,0.3631
 -0.0086,0.3331"/><polyline points="0.1905,0.3631
 0.1905,0.3331"/><polyline points="0.3896,0.3631
 0.3896,0.3331"/><polyline points="0.5887,0.3631
-0.5887,0.3331"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.6059" y="0.3911">0.0</text><text x="-0.4068" y="0.3911">0.5</text><text x="-0.2077" y="0.3911">1.0</text><text x="-0.0086" y="0.3911">1.5</text><text x="0.1905" y="0.3911">2.0</text><text x="0.3896" y="0.3911">2.5</text><text x="0.5887" y="0.3911">3.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.6059,0.3228 -0.6059,-0.3537"/><polyline points="-0.4068,0.3228 -0.4068,-0.3537"/><polyline points="-0.2077,0.3228 -0.2077,-0.3537"/><polyline points="-0.0086,0.3228 -0.0086,-0.3537"/><polyline points="0.1905,0.3228 0.1905,-0.3537"/><polyline points="0.3896,0.3228 0.3896,-0.3537"/><polyline points="0.5887,0.3228 0.5887,-0.3537"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0027" width="1.1978" x="-0.6074" y="0.3346"/></g></g></g><g class="title"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0796" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.0513" y="-0.4188">Line Chart</text></g></g><g class="title"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0478" stroke="none" stroke-width="0.0" text-anchor="end"><text x="0.6156" y="0.4608">Made with love and chart-svg</text></g></g><g class="legend"><g class="legendBorder"><g fill="rgb(99%, 99%, 99%)" fill-opacity="1.0" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0025"><rect height="0.1793" width="0.3843" x="0.3299" y="0.0775"/></g></g><g class="legendContent"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3498" y="0.2297">palette1 2</text></g><g fill="none" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="0.5688,0.2213 0.6883,0.2213"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3498" y="0.1756">palette1 1</text></g><g fill="none" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="0.5688,0.1672 0.6883,0.1672"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3498" y="0.1215">palette1 0</text></g><g fill="none" stroke="rgb(2%, 73%, 80%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="0.5688,0.1131 0.6883,0.1131"/></g></g></g><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="1.0" width="1.5" x="-0.75" y="-0.5"/></g></g></g></svg>
+0.5887,0.3331"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" text-anchor="middle"><text x="-0.6059" y="0.3911">0.0</text><text x="-0.4068" y="0.3911">0.5</text><text x="-0.2077" y="0.3911">1.0</text><text x="-0.0086" y="0.3911">1.5</text><text x="0.1905" y="0.3911">2.0</text><text x="0.3896" y="0.3911">2.5</text><text x="0.5887" y="0.3911">3.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.6059,0.3228 -0.6059,-0.3537"/><polyline points="-0.4068,0.3228 -0.4068,-0.3537"/><polyline points="-0.2077,0.3228 -0.2077,-0.3537"/><polyline points="-0.0086,0.3228 -0.0086,-0.3537"/><polyline points="0.1905,0.3228 0.1905,-0.3537"/><polyline points="0.3896,0.3228 0.3896,-0.3537"/><polyline points="0.5887,0.3228 0.5887,-0.3537"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="1.1978" height="0.0027" x="-0.6074" y="0.3346"/></g></g></g><g class="title"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0796" text-anchor="middle"><text x="-0.0513" y="-0.4188">Line Chart</text></g></g><g class="title"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0478" text-anchor="end"><text x="0.6156" y="0.4608">Made with love and chart-svg</text></g></g><g class="legend"><g class="legendBorder"><g stroke-width="0.0025" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(99%, 99%, 99%)" fill-opacity="1.0"><rect width="0.3843" height="0.1793" x="0.3299" y="0.0775"/></g></g><g class="legendContent"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" text-anchor="start"><text x="0.3498" y="0.2297">palette1 2</text></g><g stroke-width="0.0150" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" fill="none"><polyline points="0.5688,0.2213 0.6883,0.2213"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" text-anchor="start"><text x="0.3498" y="0.1756">palette1 1</text></g><g stroke-width="0.0150" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="none"><polyline points="0.5688,0.1672 0.6883,0.1672"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0398" text-anchor="start"><text x="0.3498" y="0.1215">palette1 0</text></g><g stroke-width="0.0150" stroke="rgb(2%, 73%, 80%)" stroke-opacity="1.0" fill="none"><polyline points="0.5688,0.1131 0.6883,0.1131"/></g></g></g><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.5" height="1.0" x="-0.75" y="-0.5"/></g></g></g></svg>
diff --git a/other/path.svg b/other/path.svg
--- a/other/path.svg
+++ b/other/path.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.7687 -1.5663 2.1218 1.7313" width="367" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="367" height="300" viewBox="-0.7687 -1.5663 2.1218 1.7313"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -33,7 +33,7 @@
     fill: rgb(94%, 94%, 94%);
   }
 }
-</style><g class="chart"><g class="path"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.1" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0100"><path d="M 0.0476,0 L 1.0,0 C 0.2381,0 0.2857,-0.9375 1.0,-0.9375 Q -0.9048,-1.875 0.0476,-0.9375 A 0.9487 0.9412 30.0 0 0 0.0476,0"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><rect height="0.0300" width="0.0300" x="0.0326" y="-0.0150"/><rect height="0.0300" width="0.0300" x="0.985" y="-0.0150"/><rect height="0.0300" width="0.0300" x="0.985" y="-0.9525"/><rect height="0.0300" width="0.0300" x="0.0326" y="-0.9525"/><rect height="0.0300" width="0.0300" x="0.0326" y="-0.0150"/></g></g><g class="pathtext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0476" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="0.0476" y="-0.0469">StartP (Point 0 0)</text><text x="0.5238" y="0">LineP (Point 1 0)</text><text x="0.8095" y="-0.4687">CubicP (Point 0.2 0) (Point 0.25 1) (Point 1 1)</text><text x="0.4286" y="-1.0312">QuadP (Point (-1) 2) (Point 0 1)</text><text x="0.0476" y="-0.3750">ArcP (ArcInfo (Point 1 1) (-pi / 6) False False) (Point 0 0)</text></g></g></g><g class="hud"><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="1.5165" width="1.9083" x="-0.5952" y="-1.5"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><g transform="rotate(-90.0, -0.6252, 0)"><polyline points="-0.6252,0.0150
+</style><g class="chart"><g class="path"><g stroke-width="0.0100" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.1"><path d="M 0.0476,0 L 1.0,0 C 0.2381,0 0.2857,-0.9375 1.0,-0.9375 Q -0.9048,-1.875 0.0476,-0.9375 A 0.9487 0.9412 30.0 0 0 0.0476,0"/></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><rect width="0.0300" height="0.0300" x="0.0326" y="-0.0150"/><rect width="0.0300" height="0.0300" x="0.985" y="-0.0150"/><rect width="0.0300" height="0.0300" x="0.985" y="-0.9525"/><rect width="0.0300" height="0.0300" x="0.0326" y="-0.9525"/><rect width="0.0300" height="0.0300" x="0.0326" y="-0.0150"/></g></g><g class="pathtext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0476" text-anchor="middle"><text x="0.0476" y="-0.0469">StartP (Point 0 0)</text><text x="0.5238" y="0">LineP (Point 1 0)</text><text x="0.8095" y="-0.4687">CubicP (Point 0.2 0) (Point 0.25 1) (Point 1 1)</text><text x="0.4286" y="-1.0312">QuadP (Point (-1) 2) (Point 0 1)</text><text x="0.0476" y="-0.3750">ArcP (ArcInfo (Point 1 1) (-pi / 6) False False) (Point 0 0)</text></g></g></g><g class="hud"><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.9083" height="1.5165" x="-0.5952" y="-1.5"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><g transform="rotate(-90.0, -0.6252, 0)"><polyline points="-0.6252,0.0150
 -0.6252,-0.0150"/></g><g transform="rotate(-90.0, -0.6252, -0.1875)"><polyline points="-0.6252,-0.1725
 -0.6252,-0.2025"/></g><g transform="rotate(-90.0, -0.6252, -0.3750)"><polyline points="-0.6252,-0.3600
 -0.6252,-0.3900"/></g><g transform="rotate(-90.0, -0.6252, -0.5625)"><polyline points="-0.6252,-0.5475
@@ -42,7 +42,7 @@
 -0.6252,-0.9525"/></g><g transform="rotate(-90.0, -0.6252, -1.125)"><polyline points="-0.6252,-1.11
 -0.6252,-1.14"/></g><g transform="rotate(-90.0, -0.6252, -1.3125)"><polyline points="-0.6252,-1.2975
 -0.6252,-1.3275"/></g><g transform="rotate(-90.0, -0.6252, -1.5)"><polyline points="-0.6252,-1.485
--0.6252,-1.515"/></g></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0500" stroke="none" stroke-width="0.0" text-anchor="end"><text x="-0.6612" y="0.0138">0.0</text><text x="-0.6612" y="-0.1737">0.2</text><text x="-0.6612" y="-0.3612">0.4</text><text x="-0.6612" y="-0.5487">0.6</text><text x="-0.6612" y="-0.7362">0.8</text><text x="-0.6612" y="-0.9237">1.0</text><text x="-0.6612" y="-1.1112">1.2</text><text x="-0.6612" y="-1.2988">1.4</text><text x="-0.6612" y="-1.4862">1.6</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.3333,0 1.0,0"/><polyline points="-0.3333,-0.1875 1.0,-0.1875"/><polyline points="-0.3333,-0.3750 1.0,-0.3750"/><polyline points="-0.3333,-0.5625 1.0,-0.5625"/><polyline points="-0.3333,-0.7500 1.0,-0.7500"/><polyline points="-0.3333,-0.9375 1.0,-0.9375"/><polyline points="-0.3333,-1.125 1.0,-1.125"/><polyline points="-0.3333,-1.3125 1.0,-1.3125"/><polyline points="-0.3333,-1.5 1.0,-1.5"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="1.5040" width="0.0040" x="-0.6092" y="-1.502"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.3333,0.0615
+-0.6252,-1.515"/></g></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0500" text-anchor="end"><text x="-0.6612" y="0.0138">0.0</text><text x="-0.6612" y="-0.1737">0.2</text><text x="-0.6612" y="-0.3612">0.4</text><text x="-0.6612" y="-0.5487">0.6</text><text x="-0.6612" y="-0.7362">0.8</text><text x="-0.6612" y="-0.9237">1.0</text><text x="-0.6612" y="-1.1112">1.2</text><text x="-0.6612" y="-1.2988">1.4</text><text x="-0.6612" y="-1.4862">1.6</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.3333,0 1.0,0"/><polyline points="-0.3333,-0.1875 1.0,-0.1875"/><polyline points="-0.3333,-0.3750 1.0,-0.3750"/><polyline points="-0.3333,-0.5625 1.0,-0.5625"/><polyline points="-0.3333,-0.7500 1.0,-0.7500"/><polyline points="-0.3333,-0.9375 1.0,-0.9375"/><polyline points="-0.3333,-1.125 1.0,-1.125"/><polyline points="-0.3333,-1.3125 1.0,-1.3125"/><polyline points="-0.3333,-1.5 1.0,-1.5"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.0040" height="1.5040" x="-0.6092" y="-1.502"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.3333,0.0615
 -0.3333,0.0315"/><polyline points="-0.1429,0.0615
 -0.1429,0.0315"/><polyline points="0.0476,0.0615
 0.0476,0.0315"/><polyline points="0.2381,0.0615
@@ -50,4 +50,4 @@
 0.4286,0.0315"/><polyline points="0.6190,0.0615
 0.6190,0.0315"/><polyline points="0.8095,0.0615
 0.8095,0.0315"/><polyline points="1.0,0.0615
-1.0,0.0315"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0500" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.3333" y="0.1100">-0.4</text><text x="-0.1429" y="0.1100">-0.2</text><text x="0.0476" y="0.1100"> 0.0</text><text x="0.2381" y="0.1100"> 0.2</text><text x="0.4286" y="0.1100"> 0.4</text><text x="0.6190" y="0.1100"> 0.6</text><text x="0.8095" y="0.1100"> 0.8</text><text x="1.0" y="0.1100"> 1.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.3333,0 -0.3333,-1.5"/><polyline points="-0.1429,0 -0.1429,-1.5"/><polyline points="0.0476,0 0.0476,-1.5"/><polyline points="0.2381,0 0.2381,-1.5"/><polyline points="0.4286,0 0.4286,-1.5"/><polyline points="0.6190,0 0.6190,-1.5"/><polyline points="0.8095,0 0.8095,-1.5"/><polyline points="1.0,0 1.0,-1.5"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0040" width="1.3373" x="-0.3353" y="0.0265"/></g></g></g><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="1.7313" width="2.1218" x="-0.7687" y="-1.5663"/></g></g></g></svg>
+1.0,0.0315"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0500" text-anchor="middle"><text x="-0.3333" y="0.1100">-0.4</text><text x="-0.1429" y="0.1100">-0.2</text><text x="0.0476" y="0.1100"> 0.0</text><text x="0.2381" y="0.1100"> 0.2</text><text x="0.4286" y="0.1100"> 0.4</text><text x="0.6190" y="0.1100"> 0.6</text><text x="0.8095" y="0.1100"> 0.8</text><text x="1.0" y="0.1100"> 1.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.3333,0 -0.3333,-1.5"/><polyline points="-0.1429,0 -0.1429,-1.5"/><polyline points="0.0476,0 0.0476,-1.5"/><polyline points="0.2381,0 0.2381,-1.5"/><polyline points="0.4286,0 0.4286,-1.5"/><polyline points="0.6190,0 0.6190,-1.5"/><polyline points="0.8095,0 0.8095,-1.5"/><polyline points="1.0,0 1.0,-1.5"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="1.3373" height="0.0040" x="-0.3353" y="0.0265"/></g></g></g><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="2.1218" height="1.7313" x="-0.7687" y="-1.5663"/></g></g></g></svg>
diff --git a/other/priorityv1.svg b/other/priorityv1.svg
--- a/other/priorityv1.svg
+++ b/other/priorityv1.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.75 -0.5 1.5000 1.0" width="450" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="450" height="300" viewBox="-0.75 -0.5 1.5000 1.0"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,7 +22,7 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"><g class="line"><g fill="none" stroke="rgb(2%, 73%, 80%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="-0.5977,0.1717 -0.2920,0.1717 0.0137,-0.3239"/></g><g fill="none" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="-0.5977,0.2955 0.2582,-0.0761"/></g><g fill="none" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="-0.4448,-0.2000 -0.4448,0.2955"/></g></g></g><g class="hud"><g class="frame"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.1" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0100"><rect height="0.6287" width="0.9216" x="-0.6023" y="-0.3285"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><g transform="rotate(-90.0, -0.6206, 0.2955)"><polyline points="-0.6206,0.3105
+}</style><g class="chart"><g class="line"><g stroke-width="0.0150" stroke="rgb(2%, 73%, 80%)" stroke-opacity="1.0" fill="none"><polyline points="-0.5977,0.1717 -0.2920,0.1717 0.0137,-0.3239"/></g><g stroke-width="0.0150" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="none"><polyline points="-0.5977,0.2955 0.2582,-0.0761"/></g><g stroke-width="0.0150" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" fill="none"><polyline points="-0.4448,-0.2000 -0.4448,0.2955"/></g></g></g><g class="hud"><g class="frame"><g stroke-width="0.0100" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.1"><rect width="0.9216" height="0.6287" x="-0.6023" y="-0.3285"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><g transform="rotate(-90.0, -0.6206, 0.2955)"><polyline points="-0.6206,0.3105
 -0.6206,0.2805"/></g><g transform="rotate(-90.0, -0.6206, 0.2336)"><polyline points="-0.6206,0.2486
 -0.6206,0.2186"/></g><g transform="rotate(-90.0, -0.6206, 0.1717)"><polyline points="-0.6206,0.1867
 -0.6206,0.1567"/></g><g transform="rotate(-90.0, -0.6206, 0.1097)"><polyline points="-0.6206,0.1247
@@ -33,11 +33,11 @@
 -0.6206,-0.1531"/></g><g transform="rotate(-90.0, -0.6206, -0.2000)"><polyline points="-0.6206,-0.1850
 -0.6206,-0.2150"/></g><g transform="rotate(-90.0, -0.6206, -0.2619)"><polyline points="-0.6206,-0.2469
 -0.6206,-0.2769"/></g><g transform="rotate(-90.0, -0.6206, -0.3239)"><polyline points="-0.6206,-0.3089
--0.6206,-0.3389"/></g></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" stroke="none" stroke-width="0.0" text-anchor="end"><text x="-0.6426" y="0.3041">0.0</text><text x="-0.6426" y="0.2421">0.5</text><text x="-0.6426" y="0.1802">1.0</text><text x="-0.6426" y="0.1182">1.5</text><text x="-0.6426" y="0.0563">2.0</text><text x="-0.6426" y="-0.0057">2.5</text><text x="-0.6426" y="-0.0676">3.0</text><text x="-0.6426" y="-0.1295">3.5</text><text x="-0.6426" y="-0.1915">4.0</text><text x="-0.6426" y="-0.2534">4.5</text><text x="-0.6426" y="-0.3154">5.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.5977,0.2955 0.3194,0.2955"/><polyline points="-0.5977,0.2336 0.3194,0.2336"/><polyline points="-0.5977,0.1717 0.3194,0.1717"/><polyline points="-0.5977,0.1097 0.3194,0.1097"/><polyline points="-0.5977,0.0478 0.3194,0.0478"/><polyline points="-0.5977,-0.0142 0.3194,-0.0142"/><polyline points="-0.5977,-0.0761 0.3194,-0.0761"/><polyline points="-0.5977,-0.1381 0.3194,-0.1381"/><polyline points="-0.5977,-0.2000 0.3194,-0.2000"/><polyline points="-0.5977,-0.2619 0.3194,-0.2619"/><polyline points="-0.5977,-0.3239 0.3194,-0.3239"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.6219" width="0.0024" x="-0.6139" y="-0.3251"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.5977,0.3338
+-0.6206,-0.3389"/></g></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" text-anchor="end"><text x="-0.6426" y="0.3041">0.0</text><text x="-0.6426" y="0.2421">0.5</text><text x="-0.6426" y="0.1802">1.0</text><text x="-0.6426" y="0.1182">1.5</text><text x="-0.6426" y="0.0563">2.0</text><text x="-0.6426" y="-0.0057">2.5</text><text x="-0.6426" y="-0.0676">3.0</text><text x="-0.6426" y="-0.1295">3.5</text><text x="-0.6426" y="-0.1915">4.0</text><text x="-0.6426" y="-0.2534">4.5</text><text x="-0.6426" y="-0.3154">5.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.5977,0.2955 0.3194,0.2955"/><polyline points="-0.5977,0.2336 0.3194,0.2336"/><polyline points="-0.5977,0.1717 0.3194,0.1717"/><polyline points="-0.5977,0.1097 0.3194,0.1097"/><polyline points="-0.5977,0.0478 0.3194,0.0478"/><polyline points="-0.5977,-0.0142 0.3194,-0.0142"/><polyline points="-0.5977,-0.0761 0.3194,-0.0761"/><polyline points="-0.5977,-0.1381 0.3194,-0.1381"/><polyline points="-0.5977,-0.2000 0.3194,-0.2000"/><polyline points="-0.5977,-0.2619 0.3194,-0.2619"/><polyline points="-0.5977,-0.3239 0.3194,-0.3239"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.0024" height="0.6219" x="-0.6139" y="-0.3251"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.5977,0.3338
 -0.5977,0.3038"/><polyline points="-0.4448,0.3338
 -0.4448,0.3038"/><polyline points="-0.2920,0.3338
 -0.2920,0.3038"/><polyline points="-0.1392,0.3338
 -0.1392,0.3038"/><polyline points="0.0137,0.3338
 0.0137,0.3038"/><polyline points="0.1665,0.3338
 0.1665,0.3038"/><polyline points="0.3194,0.3338
-0.3194,0.3038"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.5977" y="0.3581">0.0</text><text x="-0.4448" y="0.3581">0.5</text><text x="-0.2920" y="0.3581">1.0</text><text x="-0.1392" y="0.3581">1.5</text><text x="0.0137" y="0.3581">2.0</text><text x="0.1665" y="0.3581">2.5</text><text x="0.3194" y="0.3581">3.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.5977,0.2955 -0.5977,-0.3239"/><polyline points="-0.4448,0.2955 -0.4448,-0.3239"/><polyline points="-0.2920,0.2955 -0.2920,-0.3239"/><polyline points="-0.1392,0.2955 -0.1392,-0.3239"/><polyline points="0.0137,0.2955 0.0137,-0.3239"/><polyline points="0.1665,0.2955 0.1665,-0.3239"/><polyline points="0.3194,0.2955 0.3194,-0.3239"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0025" width="0.9195" x="-0.5989" y="0.3095"/></g></g></g><g class="title"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0611" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.1719" y="-0.3835">Line Chart</text></g></g><g class="title"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0367" stroke="none" stroke-width="0.0" text-anchor="end"><text x="0.3400" y="0.4219">Made with love and chart-svg</text></g></g><g class="legend"><g class="legendBorder"><g fill="rgb(99%, 99%, 99%)" fill-opacity="1.0" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0025"><rect height="0.1641" width="0.2950" x="0.3858" y="-0.1316"/></g></g><g class="legendContent"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.4011" y="0.0077">palette1 2</text></g><g fill="none" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="0.5692,0 0.6609,0"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.4011" y="-0.0418">palette1 1</text></g><g fill="none" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="0.5692,-0.0496 0.6609,-0.0496"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.4011" y="-0.0914">palette1 0</text></g><g fill="none" stroke="rgb(2%, 73%, 80%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="0.5692,-0.0991 0.6609,-0.0991"/></g></g></g><g class="frame"><g fill="rgb(100%, 71%, 35%)" fill-opacity="0.05" stroke="rgb(100%, 71%, 35%)" stroke-opacity="1.0" stroke-width="0.0100"><rect height="0.99" width="1.4900" x="-0.745" y="-0.495"/></g></g></g></svg>
+0.3194,0.3038"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" text-anchor="middle"><text x="-0.5977" y="0.3581">0.0</text><text x="-0.4448" y="0.3581">0.5</text><text x="-0.2920" y="0.3581">1.0</text><text x="-0.1392" y="0.3581">1.5</text><text x="0.0137" y="0.3581">2.0</text><text x="0.1665" y="0.3581">2.5</text><text x="0.3194" y="0.3581">3.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.5977,0.2955 -0.5977,-0.3239"/><polyline points="-0.4448,0.2955 -0.4448,-0.3239"/><polyline points="-0.2920,0.2955 -0.2920,-0.3239"/><polyline points="-0.1392,0.2955 -0.1392,-0.3239"/><polyline points="0.0137,0.2955 0.0137,-0.3239"/><polyline points="0.1665,0.2955 0.1665,-0.3239"/><polyline points="0.3194,0.2955 0.3194,-0.3239"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.9195" height="0.0025" x="-0.5989" y="0.3095"/></g></g></g><g class="title"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0611" text-anchor="middle"><text x="-0.1719" y="-0.3835">Line Chart</text></g></g><g class="title"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0367" text-anchor="end"><text x="0.3400" y="0.4219">Made with love and chart-svg</text></g></g><g class="legend"><g class="legendBorder"><g stroke-width="0.0025" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(99%, 99%, 99%)" fill-opacity="1.0"><rect width="0.2950" height="0.1641" x="0.3858" y="-0.1316"/></g></g><g class="legendContent"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" text-anchor="start"><text x="0.4011" y="0.0077">palette1 2</text></g><g stroke-width="0.0150" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" fill="none"><polyline points="0.5692,0 0.6609,0"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" text-anchor="start"><text x="0.4011" y="-0.0418">palette1 1</text></g><g stroke-width="0.0150" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="none"><polyline points="0.5692,-0.0496 0.6609,-0.0496"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" text-anchor="start"><text x="0.4011" y="-0.0914">palette1 0</text></g><g stroke-width="0.0150" stroke="rgb(2%, 73%, 80%)" stroke-opacity="1.0" fill="none"><polyline points="0.5692,-0.0991 0.6609,-0.0991"/></g></g></g><g class="frame"><g stroke-width="0.0100" stroke="rgb(100%, 71%, 35%)" stroke-opacity="1.0" fill="rgb(100%, 71%, 35%)" fill-opacity="0.05"><rect width="1.4900" height="0.99" x="-0.745" y="-0.495"/></g></g></g></svg>
diff --git a/other/priorityv2.svg b/other/priorityv2.svg
--- a/other/priorityv2.svg
+++ b/other/priorityv2.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.75 -0.5 1.5000 1.0" width="450" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="450" height="300" viewBox="-0.75 -0.5 1.5000 1.0"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,7 +22,7 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"><g class="line"><g fill="none" stroke="rgb(2%, 73%, 80%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="-0.5977,0.1717 -0.2920,0.1717 0.0137,-0.3239"/></g><g fill="none" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="-0.5977,0.2955 0.2582,-0.0761"/></g><g fill="none" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="-0.4448,-0.2000 -0.4448,0.2955"/></g></g></g><g class="hud"><g class="frame"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.1" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0100"><rect height="0.6287" width="0.9216" x="-0.6023" y="-0.3285"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><g transform="rotate(-90.0, -0.6206, 0.2955)"><polyline points="-0.6206,0.3105
+}</style><g class="chart"><g class="line"><g stroke-width="0.0150" stroke="rgb(2%, 73%, 80%)" stroke-opacity="1.0" fill="none"><polyline points="-0.5977,0.1717 -0.2920,0.1717 0.0137,-0.3239"/></g><g stroke-width="0.0150" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="none"><polyline points="-0.5977,0.2955 0.2582,-0.0761"/></g><g stroke-width="0.0150" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" fill="none"><polyline points="-0.4448,-0.2000 -0.4448,0.2955"/></g></g></g><g class="hud"><g class="frame"><g stroke-width="0.0100" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.1"><rect width="0.9216" height="0.6287" x="-0.6023" y="-0.3285"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><g transform="rotate(-90.0, -0.6206, 0.2955)"><polyline points="-0.6206,0.3105
 -0.6206,0.2805"/></g><g transform="rotate(-90.0, -0.6206, 0.2336)"><polyline points="-0.6206,0.2486
 -0.6206,0.2186"/></g><g transform="rotate(-90.0, -0.6206, 0.1717)"><polyline points="-0.6206,0.1867
 -0.6206,0.1567"/></g><g transform="rotate(-90.0, -0.6206, 0.1097)"><polyline points="-0.6206,0.1247
@@ -33,11 +33,11 @@
 -0.6206,-0.1531"/></g><g transform="rotate(-90.0, -0.6206, -0.2000)"><polyline points="-0.6206,-0.1850
 -0.6206,-0.2150"/></g><g transform="rotate(-90.0, -0.6206, -0.2619)"><polyline points="-0.6206,-0.2469
 -0.6206,-0.2769"/></g><g transform="rotate(-90.0, -0.6206, -0.3239)"><polyline points="-0.6206,-0.3089
--0.6206,-0.3389"/></g></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" stroke="none" stroke-width="0.0" text-anchor="end"><text x="-0.6426" y="0.3041">0.0</text><text x="-0.6426" y="0.2421">0.5</text><text x="-0.6426" y="0.1802">1.0</text><text x="-0.6426" y="0.1182">1.5</text><text x="-0.6426" y="0.0563">2.0</text><text x="-0.6426" y="-0.0057">2.5</text><text x="-0.6426" y="-0.0676">3.0</text><text x="-0.6426" y="-0.1295">3.5</text><text x="-0.6426" y="-0.1915">4.0</text><text x="-0.6426" y="-0.2534">4.5</text><text x="-0.6426" y="-0.3154">5.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.5977,0.2955 0.3194,0.2955"/><polyline points="-0.5977,0.2336 0.3194,0.2336"/><polyline points="-0.5977,0.1717 0.3194,0.1717"/><polyline points="-0.5977,0.1097 0.3194,0.1097"/><polyline points="-0.5977,0.0478 0.3194,0.0478"/><polyline points="-0.5977,-0.0142 0.3194,-0.0142"/><polyline points="-0.5977,-0.0761 0.3194,-0.0761"/><polyline points="-0.5977,-0.1381 0.3194,-0.1381"/><polyline points="-0.5977,-0.2000 0.3194,-0.2000"/><polyline points="-0.5977,-0.2619 0.3194,-0.2619"/><polyline points="-0.5977,-0.3239 0.3194,-0.3239"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.6219" width="0.0024" x="-0.6139" y="-0.3251"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.5977,0.3338
+-0.6206,-0.3389"/></g></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" text-anchor="end"><text x="-0.6426" y="0.3041">0.0</text><text x="-0.6426" y="0.2421">0.5</text><text x="-0.6426" y="0.1802">1.0</text><text x="-0.6426" y="0.1182">1.5</text><text x="-0.6426" y="0.0563">2.0</text><text x="-0.6426" y="-0.0057">2.5</text><text x="-0.6426" y="-0.0676">3.0</text><text x="-0.6426" y="-0.1295">3.5</text><text x="-0.6426" y="-0.1915">4.0</text><text x="-0.6426" y="-0.2534">4.5</text><text x="-0.6426" y="-0.3154">5.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.5977,0.2955 0.3194,0.2955"/><polyline points="-0.5977,0.2336 0.3194,0.2336"/><polyline points="-0.5977,0.1717 0.3194,0.1717"/><polyline points="-0.5977,0.1097 0.3194,0.1097"/><polyline points="-0.5977,0.0478 0.3194,0.0478"/><polyline points="-0.5977,-0.0142 0.3194,-0.0142"/><polyline points="-0.5977,-0.0761 0.3194,-0.0761"/><polyline points="-0.5977,-0.1381 0.3194,-0.1381"/><polyline points="-0.5977,-0.2000 0.3194,-0.2000"/><polyline points="-0.5977,-0.2619 0.3194,-0.2619"/><polyline points="-0.5977,-0.3239 0.3194,-0.3239"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.0024" height="0.6219" x="-0.6139" y="-0.3251"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.5977,0.3338
 -0.5977,0.3038"/><polyline points="-0.4448,0.3338
 -0.4448,0.3038"/><polyline points="-0.2920,0.3338
 -0.2920,0.3038"/><polyline points="-0.1392,0.3338
 -0.1392,0.3038"/><polyline points="0.0137,0.3338
 0.0137,0.3038"/><polyline points="0.1665,0.3338
 0.1665,0.3038"/><polyline points="0.3194,0.3338
-0.3194,0.3038"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.5977" y="0.3581">0.0</text><text x="-0.4448" y="0.3581">0.5</text><text x="-0.2920" y="0.3581">1.0</text><text x="-0.1392" y="0.3581">1.5</text><text x="0.0137" y="0.3581">2.0</text><text x="0.1665" y="0.3581">2.5</text><text x="0.3194" y="0.3581">3.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.5977,0.2955 -0.5977,-0.3239"/><polyline points="-0.4448,0.2955 -0.4448,-0.3239"/><polyline points="-0.2920,0.2955 -0.2920,-0.3239"/><polyline points="-0.1392,0.2955 -0.1392,-0.3239"/><polyline points="0.0137,0.2955 0.0137,-0.3239"/><polyline points="0.1665,0.2955 0.1665,-0.3239"/><polyline points="0.3194,0.2955 0.3194,-0.3239"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0025" width="0.9195" x="-0.5989" y="0.3095"/></g></g></g><g class="legend"><g class="legendBorder"><g fill="rgb(99%, 99%, 99%)" fill-opacity="1.0" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0025"><rect height="0.1641" width="0.2950" x="0.3858" y="-0.1180"/></g></g><g class="legendContent"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.4011" y="0.0214">palette1 2</text></g><g fill="none" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="0.5692,0.0136 0.6609,0.0136"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.4011" y="-0.0282">palette1 1</text></g><g fill="none" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="0.5692,-0.0359 0.6609,-0.0359"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.4011" y="-0.0777">palette1 0</text></g><g fill="none" stroke="rgb(2%, 73%, 80%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="0.5692,-0.0855 0.6609,-0.0855"/></g></g></g><g class="title"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0611" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="0" y="-0.3835">Line Chart</text></g></g><g class="title"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0367" stroke="none" stroke-width="0.0" text-anchor="end"><text x="0.6839" y="0.4219">Made with love and chart-svg</text></g></g><g class="frame"><g fill="rgb(100%, 71%, 35%)" fill-opacity="0.05" stroke="rgb(100%, 71%, 35%)" stroke-opacity="1.0" stroke-width="0.0100"><rect height="0.99" width="1.4900" x="-0.745" y="-0.495"/></g></g></g></svg>
+0.3194,0.3038"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" text-anchor="middle"><text x="-0.5977" y="0.3581">0.0</text><text x="-0.4448" y="0.3581">0.5</text><text x="-0.2920" y="0.3581">1.0</text><text x="-0.1392" y="0.3581">1.5</text><text x="0.0137" y="0.3581">2.0</text><text x="0.1665" y="0.3581">2.5</text><text x="0.3194" y="0.3581">3.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.5977,0.2955 -0.5977,-0.3239"/><polyline points="-0.4448,0.2955 -0.4448,-0.3239"/><polyline points="-0.2920,0.2955 -0.2920,-0.3239"/><polyline points="-0.1392,0.2955 -0.1392,-0.3239"/><polyline points="0.0137,0.2955 0.0137,-0.3239"/><polyline points="0.1665,0.2955 0.1665,-0.3239"/><polyline points="0.3194,0.2955 0.3194,-0.3239"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.9195" height="0.0025" x="-0.5989" y="0.3095"/></g></g></g><g class="legend"><g class="legendBorder"><g stroke-width="0.0025" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(99%, 99%, 99%)" fill-opacity="1.0"><rect width="0.2950" height="0.1641" x="0.3858" y="-0.1180"/></g></g><g class="legendContent"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" text-anchor="start"><text x="0.4011" y="0.0214">palette1 2</text></g><g stroke-width="0.0150" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" fill="none"><polyline points="0.5692,0.0136 0.6609,0.0136"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" text-anchor="start"><text x="0.4011" y="-0.0282">palette1 1</text></g><g stroke-width="0.0150" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="none"><polyline points="0.5692,-0.0359 0.6609,-0.0359"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0306" text-anchor="start"><text x="0.4011" y="-0.0777">palette1 0</text></g><g stroke-width="0.0150" stroke="rgb(2%, 73%, 80%)" stroke-opacity="1.0" fill="none"><polyline points="0.5692,-0.0855 0.6609,-0.0855"/></g></g></g><g class="title"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0611" text-anchor="middle"><text x="0" y="-0.3835">Line Chart</text></g></g><g class="title"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0367" text-anchor="end"><text x="0.6839" y="0.4219">Made with love and chart-svg</text></g></g><g class="frame"><g stroke-width="0.0100" stroke="rgb(100%, 71%, 35%)" stroke-opacity="1.0" fill="rgb(100%, 71%, 35%)" fill-opacity="0.05"><rect width="1.4900" height="0.99" x="-0.745" y="-0.495"/></g></g></g></svg>
diff --git a/other/quad.svg b/other/quad.svg
--- a/other/quad.svg
+++ b/other/quad.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.75 -0.5 1.5 1.0" width="450" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="450" height="300" viewBox="-0.75 -0.5 1.5 1.0"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,7 +22,7 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"><g class="quad"><g fill="rgb(66%, 7%, 55%)" fill-opacity="0.2" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0.0100"><path d="M -0.6211,0.0108 Q 0.2890,0.3786 -0.1660,-0.3571"/></g><g fill="none" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0020"><polyline points="-0.6211,0.0108 -0.6030,0.0180 -0.5852,0.0250 -0.5677,0.0318 -0.5504,0.0384 -0.5335,0.0448 -0.5168,0.0509 -0.5003,0.0569 -0.4842,0.0626 -0.4683,0.0680 -0.4527,0.0733 -0.4374,0.0783 -0.4223,0.0832 -0.4075,0.0878 -0.3930,0.0921 -0.3788,0.0963 -0.3648,0.1002 -0.3511,0.1039 -0.3377,0.1074 -0.3245,0.1107 -0.3116,0.1138 -0.2990,0.1166 -0.2867,0.1192 -0.2746,0.1216 -0.2629,0.1238 -0.2513,0.1257 -0.2401,0.1274 -0.2291,0.1289 -0.2184,0.1302 -0.2080,0.1313 -0.1979,0.1322 -0.1880,0.1328 -0.1784,0.1332 -0.1691,0.1334 -0.1600,0.1333 -0.1512,0.1331 -0.1427,0.1326 -0.1345,0.1319 -0.1265,0.1310 -0.1188,0.1298 -0.1114,0.1285 -0.1043,0.1269 -0.0974,0.1251 -0.0908,0.1231 -0.0845,0.1208 -0.0784,0.1184 -0.0726,0.1157 -0.0671,0.1128 -0.0619,0.1096 -0.0569,0.1063 -0.0523,0.1027 -0.0478,0.0989 -0.0437,0.0949 -0.0398,0.0907 -0.0362,0.0862 -0.0329,0.0816 -0.0299,0.0767 -0.0271,0.0716 -0.0246,0.0662 -0.0224,0.0607 -0.0204,0.0549 -0.0187,0.0489 -0.0173,0.0427 -0.0162,0.0363 -0.0153,0.0296 -0.0147,0.0227 -0.0144,0.0156 -0.0143,0.0083 -0.0146,0.0008 -0.0151,-0.0070 -0.0159,-0.0150 -0.0169,-0.0232 -0.0182,-0.0316 -0.0198,-0.0403 -0.0217,-0.0491 -0.0238,-0.0582 -0.0262,-0.0675 -0.0289,-0.0770 -0.0319,-0.0868 -0.0351,-0.0968 -0.0386,-0.1070 -0.0424,-0.1174 -0.0464,-0.1280 -0.0508,-0.1388 -0.0553,-0.1499 -0.0602,-0.1612 -0.0654,-0.1727 -0.0708,-0.1845 -0.0765,-0.1964 -0.0824,-0.2086 -0.0887,-0.2210 -0.0952,-0.2336 -0.1019,-0.2464 -0.1090,-0.2595 -0.1163,-0.2728 -0.1239,-0.2863 -0.1318,-0.3000 -0.1399,-0.3139 -0.1484,-0.3281 -0.1571,-0.3425 -0.1660,-0.3571"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><rect height="0.0300" width="0.0300" x="-0.6361" y="-0.0042"/><rect height="0.0300" width="0.0300" x="-0.1810" y="-0.3721"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.2890" cy="0.3786" r="0.0150"/></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(40%, 40%, 40%)" stroke-opacity="1.0" stroke-width="0.0020"><rect height="0.4905" width="0.6067" x="-0.6211" y="-0.3571"/></g></g></g><g class="hud"><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.7600" width="0.9301" x="-0.6311" y="-0.3692"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><g transform="rotate(-90.0, -0.6493, 0.3786)"><polyline points="-0.6493,0.3936
+}</style><g class="chart"><g class="quad"><g stroke-width="0.0100" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 7%, 55%)" fill-opacity="0.2"><path d="M -0.6211,0.0108 Q 0.2890,0.3786 -0.1660,-0.3571"/></g><g stroke-width="0.0020" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="none"><polyline points="-0.6211,0.0108 -0.6030,0.0180 -0.5852,0.0250 -0.5677,0.0318 -0.5504,0.0384 -0.5335,0.0448 -0.5168,0.0509 -0.5003,0.0569 -0.4842,0.0626 -0.4683,0.0680 -0.4527,0.0733 -0.4374,0.0783 -0.4223,0.0832 -0.4075,0.0878 -0.3930,0.0921 -0.3788,0.0963 -0.3648,0.1002 -0.3511,0.1039 -0.3377,0.1074 -0.3245,0.1107 -0.3116,0.1138 -0.2990,0.1166 -0.2867,0.1192 -0.2746,0.1216 -0.2629,0.1238 -0.2513,0.1257 -0.2401,0.1274 -0.2291,0.1289 -0.2184,0.1302 -0.2080,0.1313 -0.1979,0.1322 -0.1880,0.1328 -0.1784,0.1332 -0.1691,0.1334 -0.1600,0.1333 -0.1512,0.1331 -0.1427,0.1326 -0.1345,0.1319 -0.1265,0.1310 -0.1188,0.1298 -0.1114,0.1285 -0.1043,0.1269 -0.0974,0.1251 -0.0908,0.1231 -0.0845,0.1208 -0.0784,0.1184 -0.0726,0.1157 -0.0671,0.1128 -0.0619,0.1096 -0.0569,0.1063 -0.0523,0.1027 -0.0478,0.0989 -0.0437,0.0949 -0.0398,0.0907 -0.0362,0.0862 -0.0329,0.0816 -0.0299,0.0767 -0.0271,0.0716 -0.0246,0.0662 -0.0224,0.0607 -0.0204,0.0549 -0.0187,0.0489 -0.0173,0.0427 -0.0162,0.0363 -0.0153,0.0296 -0.0147,0.0227 -0.0144,0.0156 -0.0143,0.0083 -0.0146,0.0008 -0.0151,-0.0070 -0.0159,-0.0150 -0.0169,-0.0232 -0.0182,-0.0316 -0.0198,-0.0403 -0.0217,-0.0491 -0.0238,-0.0582 -0.0262,-0.0675 -0.0289,-0.0770 -0.0319,-0.0868 -0.0351,-0.0968 -0.0386,-0.1070 -0.0424,-0.1174 -0.0464,-0.1280 -0.0508,-0.1388 -0.0553,-0.1499 -0.0602,-0.1612 -0.0654,-0.1727 -0.0708,-0.1845 -0.0765,-0.1964 -0.0824,-0.2086 -0.0887,-0.2210 -0.0952,-0.2336 -0.1019,-0.2464 -0.1090,-0.2595 -0.1163,-0.2728 -0.1239,-0.2863 -0.1318,-0.3000 -0.1399,-0.3139 -0.1484,-0.3281 -0.1571,-0.3425 -0.1660,-0.3571"/></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><rect width="0.0300" height="0.0300" x="-0.6361" y="-0.0042"/><rect width="0.0300" height="0.0300" x="-0.1810" y="-0.3721"/></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="0.2890" cy="0.3786" r="0.0150"/></g><g stroke-width="0.0020" stroke="rgb(40%, 40%, 40%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.6067" height="0.4905" x="-0.6211" y="-0.3571"/></g></g></g><g class="hud"><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="0.9301" height="0.7600" x="-0.6311" y="-0.3692"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><g transform="rotate(-90.0, -0.6493, 0.3786)"><polyline points="-0.6493,0.3936
 -0.6493,0.3636"/></g><g transform="rotate(-90.0, -0.6493, 0.3050)"><polyline points="-0.6493,0.3200
 -0.6493,0.2900"/></g><g transform="rotate(-90.0, -0.6493, 0.2315)"><polyline points="-0.6493,0.2465
 -0.6493,0.2165"/></g><g transform="rotate(-90.0, -0.6493, 0.1579)"><polyline points="-0.6493,0.1729
@@ -33,7 +33,7 @@
 -0.6493,-0.1514"/></g><g transform="rotate(-90.0, -0.6493, -0.2100)"><polyline points="-0.6493,-0.1950
 -0.6493,-0.2250"/></g><g transform="rotate(-90.0, -0.6493, -0.2835)"><polyline points="-0.6493,-0.2685
 -0.6493,-0.2985"/></g><g transform="rotate(-90.0, -0.6493, -0.3571)"><polyline points="-0.6493,-0.3421
--0.6493,-0.3721"/></g></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0303" stroke="none" stroke-width="0.0" text-anchor="end"><text x="-0.6711" y="0.3887">-1.0</text><text x="-0.6711" y="0.3152">-0.8</text><text x="-0.6711" y="0.2416">-0.6</text><text x="-0.6711" y="0.1680">-0.4</text><text x="-0.6711" y="0.0944">-0.2</text><text x="-0.6711" y="0.0209"> 0.0</text><text x="-0.6711" y="-0.0527"> 0.2</text><text x="-0.6711" y="-0.1263"> 0.4</text><text x="-0.6711" y="-0.1998"> 0.6</text><text x="-0.6711" y="-0.2734"> 0.8</text><text x="-0.6711" y="-0.3470"> 1.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.6211,0.3786 0.2890,0.3786"/><polyline points="-0.6211,0.3050 0.2890,0.3050"/><polyline points="-0.6211,0.2315 0.2890,0.2315"/><polyline points="-0.6211,0.1579 0.2890,0.1579"/><polyline points="-0.6211,0.0843 0.2890,0.0843"/><polyline points="-0.6211,0.0108 0.2890,0.0108"/><polyline points="-0.6211,-0.0628 0.2890,-0.0628"/><polyline points="-0.6211,-0.1364 0.2890,-0.1364"/><polyline points="-0.6211,-0.2100 0.2890,-0.2100"/><polyline points="-0.6211,-0.2835 0.2890,-0.2835"/><polyline points="-0.6211,-0.3571 0.2890,-0.3571"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.7386" width="0.0024" x="-0.6396" y="-0.3586"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.6211,0.4278
+-0.6493,-0.3721"/></g></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0303" text-anchor="end"><text x="-0.6711" y="0.3887">-1.0</text><text x="-0.6711" y="0.3152">-0.8</text><text x="-0.6711" y="0.2416">-0.6</text><text x="-0.6711" y="0.1680">-0.4</text><text x="-0.6711" y="0.0944">-0.2</text><text x="-0.6711" y="0.0209"> 0.0</text><text x="-0.6711" y="-0.0527"> 0.2</text><text x="-0.6711" y="-0.1263"> 0.4</text><text x="-0.6711" y="-0.1998"> 0.6</text><text x="-0.6711" y="-0.2734"> 0.8</text><text x="-0.6711" y="-0.3470"> 1.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.6211,0.3786 0.2890,0.3786"/><polyline points="-0.6211,0.3050 0.2890,0.3050"/><polyline points="-0.6211,0.2315 0.2890,0.2315"/><polyline points="-0.6211,0.1579 0.2890,0.1579"/><polyline points="-0.6211,0.0843 0.2890,0.0843"/><polyline points="-0.6211,0.0108 0.2890,0.0108"/><polyline points="-0.6211,-0.0628 0.2890,-0.0628"/><polyline points="-0.6211,-0.1364 0.2890,-0.1364"/><polyline points="-0.6211,-0.2100 0.2890,-0.2100"/><polyline points="-0.6211,-0.2835 0.2890,-0.2835"/><polyline points="-0.6211,-0.3571 0.2890,-0.3571"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.0024" height="0.7386" x="-0.6396" y="-0.3586"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.6211,0.4278
 -0.6211,0.3978"/><polyline points="-0.5301,0.4278
 -0.5301,0.3978"/><polyline points="-0.4390,0.4278
 -0.4390,0.3978"/><polyline points="-0.3480,0.4278
@@ -44,4 +44,4 @@
 0.0160,0.3978"/><polyline points="0.1070,0.4278
 0.1070,0.3978"/><polyline points="0.1980,0.4278
 0.1980,0.3978"/><polyline points="0.2890,0.4278
-0.2890,0.3978"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0303" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.6211" y="0.4595">0.0</text><text x="-0.5301" y="0.4595">0.2</text><text x="-0.4390" y="0.4595">0.4</text><text x="-0.3480" y="0.4595">0.6</text><text x="-0.2570" y="0.4595">0.8</text><text x="-0.1660" y="0.4595">1.0</text><text x="-0.0750" y="0.4595">1.2</text><text x="0.0160" y="0.4595">1.4</text><text x="0.1070" y="0.4595">1.6</text><text x="0.1980" y="0.4595">1.8</text><text x="0.2890" y="0.4595">2.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.6211,0.3786 -0.6211,-0.3571"/><polyline points="-0.5301,0.3786 -0.5301,-0.3571"/><polyline points="-0.4390,0.3786 -0.4390,-0.3571"/><polyline points="-0.3480,0.3786 -0.3480,-0.3571"/><polyline points="-0.2570,0.3786 -0.2570,-0.3571"/><polyline points="-0.1660,0.3786 -0.1660,-0.3571"/><polyline points="-0.0750,0.3786 -0.0750,-0.3571"/><polyline points="0.0160,0.3786 0.0160,-0.3571"/><polyline points="0.1070,0.3786 0.1070,-0.3571"/><polyline points="0.1980,0.3786 0.1980,-0.3571"/><polyline points="0.2890,0.3786 0.2890,-0.3571"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0029" width="0.9125" x="-0.6223" y="0.3981"/></g></g></g><g class="legend"><g class="legendBorder"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0025"><rect height="0.3354" width="0.3677" x="0.3550" y="-0.2496"/></g></g><g class="legendContent"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0303" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3702" y="0.0563">Bounding Box</text></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.05" stroke="rgb(40%, 40%, 40%)" stroke-opacity="1.0" stroke-width="0.0025"><rect height="0.0368" width="0.0303" x="0.6462" y="0.0287"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0303" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3702" y="-0.0026">Path Control Point</text></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.6614" cy="-0.0118" r="0.0250"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0303" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3702" y="-0.0614">Path Endpoints</text></g><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><rect height="0.0500" width="0.0500" x="0.6364" y="-0.0956"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0303" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3702" y="-0.1203">Path Chord</text></g><g fill="none" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0020"><polyline points="0.6462,-0.1295 0.7069,-0.1295"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0303" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.3702" y="-0.1791">Path Fill</text></g><g fill="rgb(66%, 7%, 55%)" fill-opacity="0.2" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0.0500"><path d="M 0.6462,-0.1761 Q 0.7069,-0.1393 0.6766,-0.2129"/></g></g></g><g class="title"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0485" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="0" y="-0.4235">QuadPosition (Point 0 0) (Point 1 1) (Point 2 (-1))</text></g></g><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="1.0" width="1.5" x="-0.75" y="-0.5"/></g></g></g></svg>
+0.2890,0.3978"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0303" text-anchor="middle"><text x="-0.6211" y="0.4595">0.0</text><text x="-0.5301" y="0.4595">0.2</text><text x="-0.4390" y="0.4595">0.4</text><text x="-0.3480" y="0.4595">0.6</text><text x="-0.2570" y="0.4595">0.8</text><text x="-0.1660" y="0.4595">1.0</text><text x="-0.0750" y="0.4595">1.2</text><text x="0.0160" y="0.4595">1.4</text><text x="0.1070" y="0.4595">1.6</text><text x="0.1980" y="0.4595">1.8</text><text x="0.2890" y="0.4595">2.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.6211,0.3786 -0.6211,-0.3571"/><polyline points="-0.5301,0.3786 -0.5301,-0.3571"/><polyline points="-0.4390,0.3786 -0.4390,-0.3571"/><polyline points="-0.3480,0.3786 -0.3480,-0.3571"/><polyline points="-0.2570,0.3786 -0.2570,-0.3571"/><polyline points="-0.1660,0.3786 -0.1660,-0.3571"/><polyline points="-0.0750,0.3786 -0.0750,-0.3571"/><polyline points="0.0160,0.3786 0.0160,-0.3571"/><polyline points="0.1070,0.3786 0.1070,-0.3571"/><polyline points="0.1980,0.3786 0.1980,-0.3571"/><polyline points="0.2890,0.3786 0.2890,-0.3571"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.9125" height="0.0029" x="-0.6223" y="0.3981"/></g></g></g><g class="legend"><g class="legendBorder"><g stroke-width="0.0025" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(5%, 5%, 5%)" fill-opacity="0"><rect width="0.3677" height="0.3354" x="0.3550" y="-0.2496"/></g></g><g class="legendContent"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0303" text-anchor="start"><text x="0.3702" y="0.0563">Bounding Box</text></g><g stroke-width="0.0025" stroke="rgb(40%, 40%, 40%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.05"><rect width="0.0303" height="0.0368" x="0.6462" y="0.0287"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0303" text-anchor="start"><text x="0.3702" y="-0.0026">Path Control Point</text></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><circle cx="0.6614" cy="-0.0118" r="0.0250"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0303" text-anchor="start"><text x="0.3702" y="-0.0614">Path Endpoints</text></g><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><rect width="0.0500" height="0.0500" x="0.6364" y="-0.0956"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0303" text-anchor="start"><text x="0.3702" y="-0.1203">Path Chord</text></g><g stroke-width="0.0020" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="none"><polyline points="0.6462,-0.1295 0.7069,-0.1295"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0303" text-anchor="start"><text x="0.3702" y="-0.1791">Path Fill</text></g><g stroke-width="0.0500" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 7%, 55%)" fill-opacity="0.2"><path d="M 0.6462,-0.1761 Q 0.7069,-0.1393 0.6766,-0.2129"/></g></g></g><g class="title"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0485" text-anchor="middle"><text x="0" y="-0.4235">QuadPosition (Point 0 0) (Point 1 1) (Point 2 (-1))</text></g></g><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.5" height="1.0" x="-0.75" y="-0.5"/></g></g></g></svg>
diff --git a/other/rect.svg b/other/rect.svg
--- a/other/rect.svg
+++ b/other/rect.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.7494 -0.5 1.4988 0.9996" width="449" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="449" height="300" viewBox="-0.7494 -0.5 1.4988 0.9996"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,7 +22,7 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"><g class="rect"><g fill="rgb(2%, 29%, 48%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0000" width="0.0291" x="-0.7276" y="0.4008"/><rect height="0.0000" width="0.0291" x="-0.6985" y="0.4008"/><rect height="0.0000" width="0.0291" x="-0.6694" y="0.4007"/><rect height="0.0001" width="0.0291" x="-0.6403" y="0.4007"/><rect height="0.0002" width="0.0291" x="-0.6112" y="0.4006"/><rect height="0.0005" width="0.0291" x="-0.5820" y="0.4003"/><rect height="0.0010" width="0.0291" x="-0.5529" y="0.3998"/><rect height="0.0020" width="0.0291" x="-0.5238" y="0.3988"/><rect height="0.0039" width="0.0291" x="-0.4947" y="0.3969"/><rect height="0.0074" width="0.0291" x="-0.4656" y="0.3934"/><rect height="0.0135" width="0.0291" x="-0.4365" y="0.3873"/><rect height="0.0236" width="0.0291" x="-0.4074" y="0.3771"/><rect height="0.0398" width="0.0291" x="-0.3783" y="0.3610"/><rect height="0.0643" width="0.0291" x="-0.3492" y="0.3365"/><rect height="0.0998" width="0.0291" x="-0.3201" y="0.3010"/><rect height="0.1489" width="0.0291" x="-0.2910" y="0.2519"/><rect height="0.2134" width="0.0291" x="-0.2619" y="0.1874"/><rect height="0.2939" width="0.0291" x="-0.2328" y="0.1069"/><rect height="0.3889" width="0.0291" x="-0.2037" y="0.0119"/><rect height="0.4944" width="0.0291" x="-0.1746" y="-0.0936"/><rect height="0.6038" width="0.0291" x="-0.1455" y="-0.2030"/><rect height="0.7086" width="0.0291" x="-0.1164" y="-0.3078"/><rect height="0.7989" width="0.0291" x="-0.0873" y="-0.3981"/><rect height="0.8655" width="0.0291" x="-0.0582" y="-0.4647"/><rect height="0.9008" width="0.0291" x="-0.0291" y="-0.5"/><rect height="0.9008" width="0.0291" x="0" y="-0.5000"/><rect height="0.8655" width="0.0291" x="0.0291" y="-0.4647"/><rect height="0.7989" width="0.0291" x="0.0582" y="-0.3981"/><rect height="0.7086" width="0.0291" x="0.0873" y="-0.3078"/><rect height="0.6038" width="0.0291" x="0.1164" y="-0.2030"/><rect height="0.4944" width="0.0291" x="0.1455" y="-0.0936"/><rect height="0.3889" width="0.0291" x="0.1746" y="0.0119"/><rect height="0.2939" width="0.0291" x="0.2037" y="0.1069"/><rect height="0.2134" width="0.0291" x="0.2328" y="0.1874"/><rect height="0.1489" width="0.0291" x="0.2619" y="0.2519"/><rect height="0.0998" width="0.0291" x="0.2910" y="0.3010"/><rect height="0.0643" width="0.0291" x="0.3201" y="0.3365"/><rect height="0.0398" width="0.0291" x="0.3492" y="0.3610"/><rect height="0.0236" width="0.0291" x="0.3783" y="0.3771"/><rect height="0.0135" width="0.0291" x="0.4074" y="0.3873"/><rect height="0.0074" width="0.0291" x="0.4365" y="0.3934"/><rect height="0.0039" width="0.0291" x="0.4656" y="0.3969"/><rect height="0.0020" width="0.0291" x="0.4947" y="0.3988"/><rect height="0.0010" width="0.0291" x="0.5238" y="0.3998"/><rect height="0.0005" width="0.0291" x="0.5529" y="0.4003"/><rect height="0.0002" width="0.0291" x="0.5820" y="0.4006"/><rect height="0.0001" width="0.0291" x="0.6112" y="0.4007"/><rect height="0.0000" width="0.0291" x="0.6403" y="0.4007"/><rect height="0.0000" width="0.0291" x="0.6694" y="0.4008"/><rect height="0.0000" width="0.0291" x="0.6985" y="0.4008"/></g><g fill="rgb(66%, 7%, 55%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0225" width="0.0291" x="-0.7276" y="0.3783"/><rect height="0.0286" width="0.0291" x="-0.6985" y="0.3722"/><rect height="0.0360" width="0.0291" x="-0.6694" y="0.3648"/><rect height="0.0449" width="0.0291" x="-0.6403" y="0.3559"/><rect height="0.0554" width="0.0291" x="-0.6112" y="0.3454"/><rect height="0.0676" width="0.0291" x="-0.5820" y="0.3332"/><rect height="0.0818" width="0.0291" x="-0.5529" y="0.3190"/><rect height="0.0979" width="0.0291" x="-0.5238" y="0.3029"/><rect height="0.1160" width="0.0291" x="-0.4947" y="0.2847"/><rect height="0.1362" width="0.0291" x="-0.4656" y="0.2646"/><rect height="0.1582" width="0.0291" x="-0.4365" y="0.2426"/><rect height="0.1820" width="0.0291" x="-0.4074" y="0.2188"/><rect height="0.2072" width="0.0291" x="-0.3783" y="0.1935"/><rect height="0.2337" width="0.0291" x="-0.3492" y="0.1671"/><rect height="0.2608" width="0.0291" x="-0.3201" y="0.1399"/><rect height="0.2883" width="0.0291" x="-0.2910" y="0.1125"/><rect height="0.3154" width="0.0291" x="-0.2619" y="0.0854"/><rect height="0.3417" width="0.0291" x="-0.2328" y="0.0591"/><rect height="0.3664" width="0.0291" x="-0.2037" y="0.0343"/><rect height="0.3891" width="0.0291" x="-0.1746" y="0.0117"/><rect height="0.4091" width="0.0291" x="-0.1455" y="-0.0083"/><rect height="0.4258" width="0.0291" x="-0.1164" y="-0.0250"/><rect height="0.4387" width="0.0291" x="-0.0873" y="-0.0379"/><rect height="0.4476" width="0.0291" x="-0.0582" y="-0.0468"/><rect height="0.4521" width="0.0291" x="-0.0291" y="-0.0513"/><rect height="0.4521" width="0.0291" x="0" y="-0.0513"/><rect height="0.4476" width="0.0291" x="0.0291" y="-0.0468"/><rect height="0.4387" width="0.0291" x="0.0582" y="-0.0379"/><rect height="0.4258" width="0.0291" x="0.0873" y="-0.0250"/><rect height="0.4091" width="0.0291" x="0.1164" y="-0.0083"/><rect height="0.3891" width="0.0291" x="0.1455" y="0.0117"/><rect height="0.3664" width="0.0291" x="0.1746" y="0.0343"/><rect height="0.3417" width="0.0291" x="0.2037" y="0.0591"/><rect height="0.3154" width="0.0291" x="0.2328" y="0.0854"/><rect height="0.2883" width="0.0291" x="0.2619" y="0.1125"/><rect height="0.2608" width="0.0291" x="0.2910" y="0.1399"/><rect height="0.2337" width="0.0291" x="0.3201" y="0.1671"/><rect height="0.2072" width="0.0291" x="0.3492" y="0.1935"/><rect height="0.1820" width="0.0291" x="0.3783" y="0.2188"/><rect height="0.1582" width="0.0291" x="0.4074" y="0.2426"/><rect height="0.1362" width="0.0291" x="0.4365" y="0.2646"/><rect height="0.1160" width="0.0291" x="0.4656" y="0.2847"/><rect height="0.0979" width="0.0291" x="0.4947" y="0.3029"/><rect height="0.0818" width="0.0291" x="0.5238" y="0.3190"/><rect height="0.0676" width="0.0291" x="0.5529" y="0.3332"/><rect height="0.0554" width="0.0291" x="0.5820" y="0.3454"/><rect height="0.0449" width="0.0291" x="0.6112" y="0.3559"/><rect height="0.0360" width="0.0291" x="0.6403" y="0.3648"/><rect height="0.0286" width="0.0291" x="0.6694" y="0.3722"/><rect height="0.0225" width="0.0291" x="0.6985" y="0.3783"/></g></g></g><g class="hud"><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.7276,0.4428
+}</style><g class="chart"><g class="rect"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(2%, 29%, 48%)" fill-opacity="0.4"><rect width="0.0291" height="0.0000" x="-0.7276" y="0.4008"/><rect width="0.0291" height="0.0000" x="-0.6985" y="0.4008"/><rect width="0.0291" height="0.0000" x="-0.6694" y="0.4007"/><rect width="0.0291" height="0.0001" x="-0.6403" y="0.4007"/><rect width="0.0291" height="0.0002" x="-0.6112" y="0.4006"/><rect width="0.0291" height="0.0005" x="-0.5820" y="0.4003"/><rect width="0.0291" height="0.0010" x="-0.5529" y="0.3998"/><rect width="0.0291" height="0.0020" x="-0.5238" y="0.3988"/><rect width="0.0291" height="0.0039" x="-0.4947" y="0.3969"/><rect width="0.0291" height="0.0074" x="-0.4656" y="0.3934"/><rect width="0.0291" height="0.0135" x="-0.4365" y="0.3873"/><rect width="0.0291" height="0.0236" x="-0.4074" y="0.3771"/><rect width="0.0291" height="0.0398" x="-0.3783" y="0.3610"/><rect width="0.0291" height="0.0643" x="-0.3492" y="0.3365"/><rect width="0.0291" height="0.0998" x="-0.3201" y="0.3010"/><rect width="0.0291" height="0.1489" x="-0.2910" y="0.2519"/><rect width="0.0291" height="0.2134" x="-0.2619" y="0.1874"/><rect width="0.0291" height="0.2939" x="-0.2328" y="0.1069"/><rect width="0.0291" height="0.3889" x="-0.2037" y="0.0119"/><rect width="0.0291" height="0.4944" x="-0.1746" y="-0.0936"/><rect width="0.0291" height="0.6038" x="-0.1455" y="-0.2030"/><rect width="0.0291" height="0.7086" x="-0.1164" y="-0.3078"/><rect width="0.0291" height="0.7989" x="-0.0873" y="-0.3981"/><rect width="0.0291" height="0.8655" x="-0.0582" y="-0.4647"/><rect width="0.0291" height="0.9008" x="-0.0291" y="-0.5"/><rect width="0.0291" height="0.9008" x="0" y="-0.5000"/><rect width="0.0291" height="0.8655" x="0.0291" y="-0.4647"/><rect width="0.0291" height="0.7989" x="0.0582" y="-0.3981"/><rect width="0.0291" height="0.7086" x="0.0873" y="-0.3078"/><rect width="0.0291" height="0.6038" x="0.1164" y="-0.2030"/><rect width="0.0291" height="0.4944" x="0.1455" y="-0.0936"/><rect width="0.0291" height="0.3889" x="0.1746" y="0.0119"/><rect width="0.0291" height="0.2939" x="0.2037" y="0.1069"/><rect width="0.0291" height="0.2134" x="0.2328" y="0.1874"/><rect width="0.0291" height="0.1489" x="0.2619" y="0.2519"/><rect width="0.0291" height="0.0998" x="0.2910" y="0.3010"/><rect width="0.0291" height="0.0643" x="0.3201" y="0.3365"/><rect width="0.0291" height="0.0398" x="0.3492" y="0.3610"/><rect width="0.0291" height="0.0236" x="0.3783" y="0.3771"/><rect width="0.0291" height="0.0135" x="0.4074" y="0.3873"/><rect width="0.0291" height="0.0074" x="0.4365" y="0.3934"/><rect width="0.0291" height="0.0039" x="0.4656" y="0.3969"/><rect width="0.0291" height="0.0020" x="0.4947" y="0.3988"/><rect width="0.0291" height="0.0010" x="0.5238" y="0.3998"/><rect width="0.0291" height="0.0005" x="0.5529" y="0.4003"/><rect width="0.0291" height="0.0002" x="0.5820" y="0.4006"/><rect width="0.0291" height="0.0001" x="0.6112" y="0.4007"/><rect width="0.0291" height="0.0000" x="0.6403" y="0.4007"/><rect width="0.0291" height="0.0000" x="0.6694" y="0.4008"/><rect width="0.0291" height="0.0000" x="0.6985" y="0.4008"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 7%, 55%)" fill-opacity="0.4"><rect width="0.0291" height="0.0225" x="-0.7276" y="0.3783"/><rect width="0.0291" height="0.0286" x="-0.6985" y="0.3722"/><rect width="0.0291" height="0.0360" x="-0.6694" y="0.3648"/><rect width="0.0291" height="0.0449" x="-0.6403" y="0.3559"/><rect width="0.0291" height="0.0554" x="-0.6112" y="0.3454"/><rect width="0.0291" height="0.0676" x="-0.5820" y="0.3332"/><rect width="0.0291" height="0.0818" x="-0.5529" y="0.3190"/><rect width="0.0291" height="0.0979" x="-0.5238" y="0.3029"/><rect width="0.0291" height="0.1160" x="-0.4947" y="0.2847"/><rect width="0.0291" height="0.1362" x="-0.4656" y="0.2646"/><rect width="0.0291" height="0.1582" x="-0.4365" y="0.2426"/><rect width="0.0291" height="0.1820" x="-0.4074" y="0.2188"/><rect width="0.0291" height="0.2072" x="-0.3783" y="0.1935"/><rect width="0.0291" height="0.2337" x="-0.3492" y="0.1671"/><rect width="0.0291" height="0.2608" x="-0.3201" y="0.1399"/><rect width="0.0291" height="0.2883" x="-0.2910" y="0.1125"/><rect width="0.0291" height="0.3154" x="-0.2619" y="0.0854"/><rect width="0.0291" height="0.3417" x="-0.2328" y="0.0591"/><rect width="0.0291" height="0.3664" x="-0.2037" y="0.0343"/><rect width="0.0291" height="0.3891" x="-0.1746" y="0.0117"/><rect width="0.0291" height="0.4091" x="-0.1455" y="-0.0083"/><rect width="0.0291" height="0.4258" x="-0.1164" y="-0.0250"/><rect width="0.0291" height="0.4387" x="-0.0873" y="-0.0379"/><rect width="0.0291" height="0.4476" x="-0.0582" y="-0.0468"/><rect width="0.0291" height="0.4521" x="-0.0291" y="-0.0513"/><rect width="0.0291" height="0.4521" x="0" y="-0.0513"/><rect width="0.0291" height="0.4476" x="0.0291" y="-0.0468"/><rect width="0.0291" height="0.4387" x="0.0582" y="-0.0379"/><rect width="0.0291" height="0.4258" x="0.0873" y="-0.0250"/><rect width="0.0291" height="0.4091" x="0.1164" y="-0.0083"/><rect width="0.0291" height="0.3891" x="0.1455" y="0.0117"/><rect width="0.0291" height="0.3664" x="0.1746" y="0.0343"/><rect width="0.0291" height="0.3417" x="0.2037" y="0.0591"/><rect width="0.0291" height="0.3154" x="0.2328" y="0.0854"/><rect width="0.0291" height="0.2883" x="0.2619" y="0.1125"/><rect width="0.0291" height="0.2608" x="0.2910" y="0.1399"/><rect width="0.0291" height="0.2337" x="0.3201" y="0.1671"/><rect width="0.0291" height="0.2072" x="0.3492" y="0.1935"/><rect width="0.0291" height="0.1820" x="0.3783" y="0.2188"/><rect width="0.0291" height="0.1582" x="0.4074" y="0.2426"/><rect width="0.0291" height="0.1362" x="0.4365" y="0.2646"/><rect width="0.0291" height="0.1160" x="0.4656" y="0.2847"/><rect width="0.0291" height="0.0979" x="0.4947" y="0.3029"/><rect width="0.0291" height="0.0818" x="0.5238" y="0.3190"/><rect width="0.0291" height="0.0676" x="0.5529" y="0.3332"/><rect width="0.0291" height="0.0554" x="0.5820" y="0.3454"/><rect width="0.0291" height="0.0449" x="0.6112" y="0.3559"/><rect width="0.0291" height="0.0360" x="0.6403" y="0.3648"/><rect width="0.0291" height="0.0286" x="0.6694" y="0.3722"/><rect width="0.0291" height="0.0225" x="0.6985" y="0.3783"/></g></g></g><g class="hud"><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.7276,0.4428
 -0.7276,0.4128"/><polyline points="-0.5820,0.4428
 -0.5820,0.4128"/><polyline points="-0.4365,0.4428
 -0.4365,0.4128"/><polyline points="-0.2910,0.4428
@@ -33,4 +33,4 @@
 0.2910,0.4128"/><polyline points="0.4365,0.4428
 0.4365,0.4128"/><polyline points="0.5820,0.4428
 0.5820,0.4128"/><polyline points="0.7276,0.4428
-0.7276,0.4128"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0485" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.7276" y="0.485">-5</text><text x="-0.5820" y="0.485">-4</text><text x="-0.4365" y="0.485">-3</text><text x="-0.2910" y="0.485">-2</text><text x="-0.1455" y="0.485">-1</text><text x="0" y="0.485"> 0</text><text x="0.1455" y="0.485"> 1</text><text x="0.2910" y="0.485"> 2</text><text x="0.4365" y="0.485"> 3</text><text x="0.5820" y="0.485"> 4</text><text x="0.7276" y="0.485"> 5</text></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0036" width="1.459" x="-0.7295" y="0.4098"/></g></g></g></g></svg>
+0.7276,0.4128"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0485" text-anchor="middle"><text x="-0.7276" y="0.485">-5</text><text x="-0.5820" y="0.485">-4</text><text x="-0.4365" y="0.485">-3</text><text x="-0.2910" y="0.485">-2</text><text x="-0.1455" y="0.485">-1</text><text x="0" y="0.485"> 0</text><text x="0.1455" y="0.485"> 1</text><text x="0.2910" y="0.485"> 2</text><text x="0.4365" y="0.485"> 3</text><text x="0.5820" y="0.485"> 4</text><text x="0.7276" y="0.485"> 5</text></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="1.459" height="0.0036" x="-0.7295" y="0.4098"/></g></g></g></g></svg>
diff --git a/other/sbar.svg b/other/sbar.svg
--- a/other/sbar.svg
+++ b/other/sbar.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.7427 -0.5 1.4927 0.9751" width="459" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="459" height="300" viewBox="-0.7427 -0.5 1.4927 0.9751"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,7 +22,7 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"><g class="barchart"><g fill="rgb(2%, 29%, 48%)" fill-opacity="0.7" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0629" width="0.1032" x="-0.7119" y="0.1288"/><rect height="0.1258" width="0.1032" x="-0.5972" y="0.0660"/><rect height="0.1887" width="0.1032" x="-0.4825" y="0.0031"/><rect height="0.3144" width="0.1032" x="-0.3677" y="-0.1227"/><rect height="0.5031" width="0.1032" x="-0.2530" y="-0.3113"/><rect height="0" width="0.1032" x="-0.1383" y="0.1917"/><rect height="0.1258" width="0.1032" x="-0.0236" y="0.1917"/><rect height="0.6917" width="0.1032" x="0.0911" y="-0.5"/><rect height="0.1258" width="0.1032" x="0.2059" y="0.0660"/><rect height="0.0629" width="0.1032" x="0.3206" y="0.1288"/></g></g></g><g class="hud"><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.6603,0.3570
+}</style><g class="chart"><g class="barchart"><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 29%, 48%)" fill-opacity="0.7"><rect width="0.1032" height="0.0629" x="-0.7119" y="0.1288"/><rect width="0.1032" height="0.1258" x="-0.5972" y="0.0660"/><rect width="0.1032" height="0.1887" x="-0.4825" y="0.0031"/><rect width="0.1032" height="0.3144" x="-0.3677" y="-0.1227"/><rect width="0.1032" height="0.5031" x="-0.2530" y="-0.3113"/><rect width="0.1032" height="0" x="-0.1383" y="0.1917"/><rect width="0.1032" height="0.1258" x="-0.0236" y="0.1917"/><rect width="0.1032" height="0.6917" x="0.0911" y="-0.5"/><rect width="0.1032" height="0.1258" x="0.2059" y="0.0660"/><rect width="0.1032" height="0.0629" x="0.3206" y="0.1288"/></g></g></g><g class="hud"><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.6603,0.3570
 -0.6603,0.3270"/><polyline points="-0.5456,0.3570
 -0.5456,0.3270"/><polyline points="-0.4308,0.3570
 -0.4308,0.3270"/><polyline points="-0.3161,0.3570
@@ -32,4 +32,4 @@
 0.0280,0.3270"/><polyline points="0.1428,0.3570
 0.1428,0.3270"/><polyline points="0.2575,0.3570
 0.2575,0.3270"/><polyline points="0.3722,0.3570
-0.3722,0.3270"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0382" stroke="none" stroke-width="0.0" text-anchor="end"><text transform="rotate(-45.0, -0.6603, 0.3939)" x="-0.6603" y="0.3939">row 1</text><text transform="rotate(-45.0, -0.5456, 0.3939)" x="-0.5456" y="0.3939">row 2</text><text transform="rotate(-45.0, -0.4308, 0.3939)" x="-0.4308" y="0.3939">row 3</text><text transform="rotate(-45.0, -0.3161, 0.3939)" x="-0.3161" y="0.3939">row 4</text><text transform="rotate(-45.0, -0.2014, 0.3939)" x="-0.2014" y="0.3939">row 5</text><text transform="rotate(-45.0, -0.0867, 0.3939)" x="-0.0867" y="0.3939">row 6</text><text transform="rotate(-45.0, 0.0280, 0.3939)" x="0.0280" y="0.3939">row 7</text><text transform="rotate(-45.0, 0.1428, 0.3939)" x="0.1428" y="0.3939">row 8</text><text transform="rotate(-45.0, 0.2575, 0.3939)" x="0.2575" y="0.3939">row 9</text><text transform="rotate(-45.0, 0.3722, 0.3939)" x="0.3722" y="0.3939">row 10</text></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0033" width="1.1502" x="-0.7192" y="0.3257"/></g></g></g><g class="legend"><g class="legendBorder"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" stroke-width="0.0025"><rect height="0.1839" width="0.2577" x="0.4884" y="-0.1425"/></g></g><g class="legendContent"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0344" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.5076" y="-0.0005">column 2</text></g><g fill="rgb(66%, 7%, 55%)" fill-opacity="0.7" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0613" width="0.0574" x="0.6697" y="-0.0403"/></g><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0344" stroke="none" stroke-width="0.0" text-anchor="start"><text x="0.5076" y="-0.0822">column 1</text></g><g fill="rgb(2%, 29%, 48%)" fill-opacity="0.7" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0613" width="0.0574" x="0.6697" y="-0.1221"/></g></g></g></g></svg>
+0.3722,0.3270"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0382" text-anchor="end"><text x="-0.6603" y="0.3939" transform="rotate(-45.0, -0.6603, 0.3939)">row 1</text><text x="-0.5456" y="0.3939" transform="rotate(-45.0, -0.5456, 0.3939)">row 2</text><text x="-0.4308" y="0.3939" transform="rotate(-45.0, -0.4308, 0.3939)">row 3</text><text x="-0.3161" y="0.3939" transform="rotate(-45.0, -0.3161, 0.3939)">row 4</text><text x="-0.2014" y="0.3939" transform="rotate(-45.0, -0.2014, 0.3939)">row 5</text><text x="-0.0867" y="0.3939" transform="rotate(-45.0, -0.0867, 0.3939)">row 6</text><text x="0.0280" y="0.3939" transform="rotate(-45.0, 0.0280, 0.3939)">row 7</text><text x="0.1428" y="0.3939" transform="rotate(-45.0, 0.1428, 0.3939)">row 8</text><text x="0.2575" y="0.3939" transform="rotate(-45.0, 0.2575, 0.3939)">row 9</text><text x="0.3722" y="0.3939" transform="rotate(-45.0, 0.3722, 0.3939)">row 10</text></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="1.1502" height="0.0033" x="-0.7192" y="0.3257"/></g></g></g><g class="legend"><g class="legendBorder"><g stroke-width="0.0025" stroke="rgb(5%, 5%, 5%)" stroke-opacity="1.0" fill="rgb(5%, 5%, 5%)" fill-opacity="0"><rect width="0.2577" height="0.1839" x="0.4884" y="-0.1425"/></g></g><g class="legendContent"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0344" text-anchor="start"><text x="0.5076" y="-0.0005">column 2</text></g><g stroke-width="0" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" fill="rgb(66%, 7%, 55%)" fill-opacity="0.7"><rect width="0.0574" height="0.0613" x="0.6697" y="-0.0403"/></g><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0344" text-anchor="start"><text x="0.5076" y="-0.0822">column 1</text></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 29%, 48%)" fill-opacity="0.7"><rect width="0.0574" height="0.0613" x="0.6697" y="-0.1221"/></g></g></g></g></svg>
diff --git a/other/surface.svg b/other/surface.svg
--- a/other/surface.svg
+++ b/other/surface.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.75 -0.5 1.5 1.0" width="450" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="450" height="300" viewBox="-0.75 -0.5 1.5 1.0"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,4 +22,4 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}svg { shape-rendering: crispEdges; }</style><g class="chart"><g class="surface"><g fill="rgb(0%, 52%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.49"/></g><g fill="rgb(2%, 51%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.48"/></g><g fill="rgb(5%, 51%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.47"/></g><g fill="rgb(8%, 50%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.4600"/></g><g fill="rgb(10%, 50%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.45"/></g><g fill="rgb(12%, 50%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.44"/></g><g fill="rgb(14%, 49%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.43"/></g><g fill="rgb(16%, 49%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.42"/></g><g fill="rgb(18%, 48%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.41"/></g><g fill="rgb(20%, 47%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.4"/></g><g fill="rgb(21%, 47%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.39"/></g><g fill="rgb(23%, 46%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.38"/></g><g fill="rgb(26%, 45%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.37"/></g><g fill="rgb(29%, 44%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.36"/></g><g fill="rgb(33%, 42%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.35"/></g><g fill="rgb(37%, 40%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.3400"/></g><g fill="rgb(41%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.3300"/></g><g fill="rgb(46%, 36%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.3200"/></g><g fill="rgb(50%, 34%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.31"/></g><g fill="rgb(54%, 32%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.3"/></g><g fill="rgb(58%, 29%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.29"/></g><g fill="rgb(62%, 26%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.28"/></g><g fill="rgb(65%, 24%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.27"/></g><g fill="rgb(69%, 20%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.26"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.25"/></g><g fill="rgb(72%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.24"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.2300"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.2200"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.2100"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.2"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.19"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.18"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.1700"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.1600"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.1500"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.1400"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.13"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.12"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.1100"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.1000"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.0900"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.0800"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.0700"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.0600"/></g><g fill="rgb(56%, 33%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.0500"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.0400"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.0300"/></g><g fill="rgb(40%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.0200"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0.0100"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="0"/></g><g fill="rgb(18%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.0100"/></g><g fill="rgb(1%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.0200"/></g><g fill="rgb(-28%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.0300"/></g><g fill="rgb(-50%, 49%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.0400"/></g><g fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.0500"/></g><g fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.0600"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.0700"/></g><g fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.0800"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.0900"/></g><g fill="rgb(-87%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.1000"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.1100"/></g><g fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.12"/></g><g fill="rgb(-66%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.13"/></g><g fill="rgb(-56%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.14"/></g><g fill="rgb(-46%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.1500"/></g><g fill="rgb(-36%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.1600"/></g><g fill="rgb(-26%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.1700"/></g><g fill="rgb(-16%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.1800"/></g><g fill="rgb(-8%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.1900"/></g><g fill="rgb(0%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.2000"/></g><g fill="rgb(6%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.2100"/></g><g fill="rgb(9%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.2200"/></g><g fill="rgb(11%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.2300"/></g><g fill="rgb(12%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.24"/></g><g fill="rgb(13%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.25"/></g><g fill="rgb(12%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.26"/></g><g fill="rgb(11%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.27"/></g><g fill="rgb(9%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.28"/></g><g fill="rgb(6%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.2900"/></g><g fill="rgb(0%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.3000"/></g><g fill="rgb(-8%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.3100"/></g><g fill="rgb(-16%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.3200"/></g><g fill="rgb(-26%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.3300"/></g><g fill="rgb(-36%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.3400"/></g><g fill="rgb(-46%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.35"/></g><g fill="rgb(-56%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.36"/></g><g fill="rgb(-66%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.37"/></g><g fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.38"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.39"/></g><g fill="rgb(-87%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.4"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.4100"/></g><g fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.4200"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.4300"/></g><g fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.4400"/></g><g fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.4500"/></g><g fill="rgb(-50%, 49%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.4600"/></g><g fill="rgb(-28%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.47"/></g><g fill="rgb(1%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.48"/></g><g fill="rgb(18%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.49"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.75" y="-0.5"/></g><g fill="rgb(3%, 51%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.49"/></g><g fill="rgb(6%, 51%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.48"/></g><g fill="rgb(8%, 50%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.47"/></g><g fill="rgb(10%, 50%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.4600"/></g><g fill="rgb(13%, 49%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.45"/></g><g fill="rgb(15%, 49%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.44"/></g><g fill="rgb(17%, 48%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.43"/></g><g fill="rgb(18%, 48%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.42"/></g><g fill="rgb(20%, 47%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.41"/></g><g fill="rgb(22%, 47%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.4"/></g><g fill="rgb(24%, 46%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.39"/></g><g fill="rgb(26%, 45%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.38"/></g><g fill="rgb(30%, 43%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.37"/></g><g fill="rgb(34%, 42%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.36"/></g><g fill="rgb(38%, 40%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.35"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.3400"/></g><g fill="rgb(47%, 36%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.3300"/></g><g fill="rgb(51%, 33%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.3200"/></g><g fill="rgb(55%, 31%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.31"/></g><g fill="rgb(59%, 28%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.3"/></g><g fill="rgb(63%, 26%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.29"/></g><g fill="rgb(66%, 23%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.28"/></g><g fill="rgb(70%, 19%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.27"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.26"/></g><g fill="rgb(71%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.25"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.24"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.2300"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.2200"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.2100"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.2"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.19"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.18"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.1700"/></g><g fill="rgb(67%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.1600"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.1500"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.1400"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.13"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.12"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.1100"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.1000"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.0900"/></g><g fill="rgb(63%, 30%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.0800"/></g><g fill="rgb(58%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.0700"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.0600"/></g><g fill="rgb(49%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.0500"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.0400"/></g><g fill="rgb(37%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.0300"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.0200"/></g><g fill="rgb(22%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0.0100"/></g><g fill="rgb(10%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="0"/></g><g fill="rgb(-18%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.0100"/></g><g fill="rgb(-43%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.0200"/></g><g fill="rgb(-63%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.0300"/></g><g fill="rgb(-77%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.0400"/></g><g fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.0500"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.0600"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.0700"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.0800"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.0900"/></g><g fill="rgb(-74%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.1000"/></g><g fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.1100"/></g><g fill="rgb(-53%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.12"/></g><g fill="rgb(-42%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.13"/></g><g fill="rgb(-30%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.14"/></g><g fill="rgb(-18%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.1500"/></g><g fill="rgb(-6%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.1600"/></g><g fill="rgb(4%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.1700"/></g><g fill="rgb(10%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.1800"/></g><g fill="rgb(14%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.1900"/></g><g fill="rgb(16%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.2000"/></g><g fill="rgb(18%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.2100"/></g><g fill="rgb(19%, 53%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.2200"/></g><g fill="rgb(20%, 52%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.2300"/></g><g fill="rgb(20%, 52%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.24"/></g><g fill="rgb(20%, 52%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.25"/></g><g fill="rgb(19%, 53%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.26"/></g><g fill="rgb(18%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.27"/></g><g fill="rgb(16%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.28"/></g><g fill="rgb(14%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.2900"/></g><g fill="rgb(11%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.3000"/></g><g fill="rgb(4%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.3100"/></g><g fill="rgb(-6%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.3200"/></g><g fill="rgb(-17%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.3300"/></g><g fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.3400"/></g><g fill="rgb(-41%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.35"/></g><g fill="rgb(-53%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.36"/></g><g fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.37"/></g><g fill="rgb(-73%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.38"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.39"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.4"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.4100"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.4200"/></g><g fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.4300"/></g><g fill="rgb(-77%, 51%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.4400"/></g><g fill="rgb(-64%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.4500"/></g><g fill="rgb(-44%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.4600"/></g><g fill="rgb(-19%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.47"/></g><g fill="rgb(10%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.48"/></g><g fill="rgb(22%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.49"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.735" y="-0.5"/></g><g fill="rgb(6%, 51%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.49"/></g><g fill="rgb(8%, 50%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.48"/></g><g fill="rgb(11%, 50%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.47"/></g><g fill="rgb(13%, 49%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.4600"/></g><g fill="rgb(15%, 49%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.45"/></g><g fill="rgb(17%, 48%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.44"/></g><g fill="rgb(19%, 48%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.43"/></g><g fill="rgb(20%, 47%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.42"/></g><g fill="rgb(22%, 47%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.41"/></g><g fill="rgb(24%, 46%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.4"/></g><g fill="rgb(27%, 45%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.39"/></g><g fill="rgb(31%, 43%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.38"/></g><g fill="rgb(35%, 41%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.37"/></g><g fill="rgb(39%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.36"/></g><g fill="rgb(43%, 37%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.35"/></g><g fill="rgb(48%, 35%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.3400"/></g><g fill="rgb(52%, 33%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.3300"/></g><g fill="rgb(56%, 30%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.3200"/></g><g fill="rgb(60%, 28%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.31"/></g><g fill="rgb(64%, 25%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.3"/></g><g fill="rgb(67%, 22%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.29"/></g><g fill="rgb(70%, 19%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.28"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.27"/></g><g fill="rgb(71%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.26"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.25"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.24"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.2300"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.2200"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.2100"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.2"/></g><g fill="rgb(67%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.19"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.18"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.1700"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.1600"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.1500"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.1400"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.13"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.12"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.1100"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.1000"/></g><g fill="rgb(61%, 31%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.0900"/></g><g fill="rgb(56%, 33%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.0800"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.0700"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.0600"/></g><g fill="rgb(40%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.0500"/></g><g fill="rgb(33%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.0400"/></g><g fill="rgb(26%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.0300"/></g><g fill="rgb(16%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.0200"/></g><g fill="rgb(-6%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0.0100"/></g><g fill="rgb(-34%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="0"/></g><g fill="rgb(-56%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.0100"/></g><g fill="rgb(-73%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.0200"/></g><g fill="rgb(-84%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.0300"/></g><g fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.0400"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.0500"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.0600"/></g><g fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.0700"/></g><g fill="rgb(-74%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.0800"/></g><g fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.0900"/></g><g fill="rgb(-51%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.1000"/></g><g fill="rgb(-38%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.1100"/></g><g fill="rgb(-25%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.12"/></g><g fill="rgb(-11%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.13"/></g><g fill="rgb(2%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.14"/></g><g fill="rgb(11%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.1500"/></g><g fill="rgb(15%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.1600"/></g><g fill="rgb(18%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.1700"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.1800"/></g><g fill="rgb(22%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.1900"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.2000"/></g><g fill="rgb(25%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.2100"/></g><g fill="rgb(25%, 52%, 21%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.2200"/></g><g fill="rgb(25%, 52%, 21%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.2300"/></g><g fill="rgb(25%, 52%, 21%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.24"/></g><g fill="rgb(25%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.25"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.26"/></g><g fill="rgb(23%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.27"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.28"/></g><g fill="rgb(19%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.2900"/></g><g fill="rgb(16%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.3000"/></g><g fill="rgb(11%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.3100"/></g><g fill="rgb(3%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.3200"/></g><g fill="rgb(-10%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.3300"/></g><g fill="rgb(-23%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.3400"/></g><g fill="rgb(-37%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.35"/></g><g fill="rgb(-50%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.36"/></g><g fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.37"/></g><g fill="rgb(-73%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.38"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.39"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.4"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.4100"/></g><g fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.4200"/></g><g fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.4300"/></g><g fill="rgb(-75%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.4400"/></g><g fill="rgb(-59%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.4500"/></g><g fill="rgb(-37%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.4600"/></g><g fill="rgb(-9%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.47"/></g><g fill="rgb(15%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.48"/></g><g fill="rgb(25%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.49"/></g><g fill="rgb(33%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.72" y="-0.5"/></g><g fill="rgb(9%, 50%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.49"/></g><g fill="rgb(11%, 50%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.48"/></g><g fill="rgb(13%, 49%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.47"/></g><g fill="rgb(15%, 49%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.4600"/></g><g fill="rgb(17%, 48%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.45"/></g><g fill="rgb(19%, 48%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.44"/></g><g fill="rgb(21%, 47%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.43"/></g><g fill="rgb(22%, 47%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.42"/></g><g fill="rgb(25%, 46%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.41"/></g><g fill="rgb(28%, 44%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.4"/></g><g fill="rgb(31%, 43%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.39"/></g><g fill="rgb(36%, 41%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.38"/></g><g fill="rgb(40%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.37"/></g><g fill="rgb(44%, 37%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.36"/></g><g fill="rgb(49%, 35%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.35"/></g><g fill="rgb(53%, 32%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.3400"/></g><g fill="rgb(57%, 30%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.3300"/></g><g fill="rgb(61%, 27%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.3200"/></g><g fill="rgb(64%, 24%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.31"/></g><g fill="rgb(68%, 21%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.3"/></g><g fill="rgb(71%, 18%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.29"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.28"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.27"/></g><g fill="rgb(71%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.26"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.25"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.24"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.2300"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.2200"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.2100"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.2"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.19"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.18"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.1700"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.1600"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.1500"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.1400"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.13"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.12"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.1100"/></g><g fill="rgb(59%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.1000"/></g><g fill="rgb(54%, 33%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.0900"/></g><g fill="rgb(49%, 36%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.0800"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.0700"/></g><g fill="rgb(37%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.0600"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.0500"/></g><g fill="rgb(21%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.0400"/></g><g fill="rgb(8%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.0300"/></g><g fill="rgb(-22%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.0200"/></g><g fill="rgb(-48%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0.0100"/></g><g fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="0"/></g><g fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.0100"/></g><g fill="rgb(-88%, 53%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.0200"/></g><g fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.0300"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.0400"/></g><g fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.0500"/></g><g fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.0600"/></g><g fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.0700"/></g><g fill="rgb(-51%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.0800"/></g><g fill="rgb(-37%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.0900"/></g><g fill="rgb(-22%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.1000"/></g><g fill="rgb(-7%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.1100"/></g><g fill="rgb(7%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.12"/></g><g fill="rgb(14%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.13"/></g><g fill="rgb(18%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.14"/></g><g fill="rgb(22%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.1500"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.1600"/></g><g fill="rgb(26%, 52%, 21%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.1700"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.1800"/></g><g fill="rgb(29%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.1900"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.2000"/></g><g fill="rgb(30%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.2100"/></g><g fill="rgb(30%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.2200"/></g><g fill="rgb(30%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.2300"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.24"/></g><g fill="rgb(29%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.25"/></g><g fill="rgb(28%, 52%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.26"/></g><g fill="rgb(26%, 52%, 21%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.27"/></g><g fill="rgb(25%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.28"/></g><g fill="rgb(22%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.2900"/></g><g fill="rgb(19%, 53%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.3000"/></g><g fill="rgb(15%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.3100"/></g><g fill="rgb(10%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.3200"/></g><g fill="rgb(-3%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.3300"/></g><g fill="rgb(-18%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.3400"/></g><g fill="rgb(-33%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.35"/></g><g fill="rgb(-48%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.36"/></g><g fill="rgb(-61%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.37"/></g><g fill="rgb(-73%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.38"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.39"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.4"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.4100"/></g><g fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.4200"/></g><g fill="rgb(-83%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.4300"/></g><g fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.4400"/></g><g fill="rgb(-53%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.4500"/></g><g fill="rgb(-29%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.4600"/></g><g fill="rgb(2%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.47"/></g><g fill="rgb(19%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.48"/></g><g fill="rgb(28%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.49"/></g><g fill="rgb(35%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.705" y="-0.5"/></g><g fill="rgb(11%, 50%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.49"/></g><g fill="rgb(14%, 49%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.48"/></g><g fill="rgb(16%, 49%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.47"/></g><g fill="rgb(17%, 48%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.4600"/></g><g fill="rgb(19%, 48%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.45"/></g><g fill="rgb(21%, 47%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.44"/></g><g fill="rgb(23%, 47%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.43"/></g><g fill="rgb(25%, 46%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.42"/></g><g fill="rgb(28%, 44%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.41"/></g><g fill="rgb(32%, 43%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.4"/></g><g fill="rgb(36%, 41%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.39"/></g><g fill="rgb(41%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.38"/></g><g fill="rgb(45%, 37%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.37"/></g><g fill="rgb(49%, 34%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.36"/></g><g fill="rgb(53%, 32%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.35"/></g><g fill="rgb(57%, 29%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.3400"/></g><g fill="rgb(61%, 27%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.3300"/></g><g fill="rgb(65%, 24%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.3200"/></g><g fill="rgb(69%, 21%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.31"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.3"/></g><g fill="rgb(72%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.29"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.28"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.27"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.26"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.25"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.24"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.2300"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.2200"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.2100"/></g><g fill="rgb(67%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.2"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.19"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.18"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.1700"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.1600"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.1500"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.1400"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.13"/></g><g fill="rgb(62%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.12"/></g><g fill="rgb(57%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.1100"/></g><g fill="rgb(52%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.1000"/></g><g fill="rgb(47%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.0900"/></g><g fill="rgb(41%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.0800"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.0700"/></g><g fill="rgb(26%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.0600"/></g><g fill="rgb(16%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.0500"/></g><g fill="rgb(-7%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.0400"/></g><g fill="rgb(-37%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.0300"/></g><g fill="rgb(-59%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.0200"/></g><g fill="rgb(-76%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0.0100"/></g><g fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="0"/></g><g fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.0100"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.0200"/></g><g fill="rgb(-86%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.0300"/></g><g fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.0400"/></g><g fill="rgb(-66%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.0500"/></g><g fill="rgb(-52%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.0600"/></g><g fill="rgb(-37%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.0700"/></g><g fill="rgb(-21%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.0800"/></g><g fill="rgb(-4%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.0900"/></g><g fill="rgb(10%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.1000"/></g><g fill="rgb(16%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.1100"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.12"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.13"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.14"/></g><g fill="rgb(29%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.1500"/></g><g fill="rgb(30%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.1600"/></g><g fill="rgb(32%, 51%, 16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.1700"/></g><g fill="rgb(33%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.1800"/></g><g fill="rgb(33%, 51%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.1900"/></g><g fill="rgb(34%, 50%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.2000"/></g><g fill="rgb(34%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.2100"/></g><g fill="rgb(34%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.2200"/></g><g fill="rgb(34%, 50%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.2300"/></g><g fill="rgb(33%, 51%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.24"/></g><g fill="rgb(32%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.25"/></g><g fill="rgb(31%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.26"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.27"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.28"/></g><g fill="rgb(25%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.2900"/></g><g fill="rgb(22%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.3000"/></g><g fill="rgb(18%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.3100"/></g><g fill="rgb(13%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.3200"/></g><g fill="rgb(3%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.3300"/></g><g fill="rgb(-14%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.3400"/></g><g fill="rgb(-31%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.35"/></g><g fill="rgb(-46%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.36"/></g><g fill="rgb(-61%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.37"/></g><g fill="rgb(-73%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.38"/></g><g fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.39"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.4"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.4100"/></g><g fill="rgb(-88%, 53%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.4200"/></g><g fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.4300"/></g><g fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.4400"/></g><g fill="rgb(-47%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.4500"/></g><g fill="rgb(-20%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.4600"/></g><g fill="rgb(10%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.47"/></g><g fill="rgb(23%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.48"/></g><g fill="rgb(31%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.49"/></g><g fill="rgb(38%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6900" y="-0.5"/></g><g fill="rgb(14%, 49%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.49"/></g><g fill="rgb(16%, 49%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.48"/></g><g fill="rgb(18%, 48%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.47"/></g><g fill="rgb(19%, 48%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.4600"/></g><g fill="rgb(21%, 47%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.45"/></g><g fill="rgb(23%, 46%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.44"/></g><g fill="rgb(25%, 45%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.43"/></g><g fill="rgb(29%, 44%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.42"/></g><g fill="rgb(33%, 42%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.41"/></g><g fill="rgb(37%, 40%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.4"/></g><g fill="rgb(41%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.39"/></g><g fill="rgb(46%, 36%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.38"/></g><g fill="rgb(50%, 34%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.37"/></g><g fill="rgb(54%, 31%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.36"/></g><g fill="rgb(58%, 29%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.35"/></g><g fill="rgb(62%, 26%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.3400"/></g><g fill="rgb(66%, 23%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.3300"/></g><g fill="rgb(69%, 20%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.3200"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.31"/></g><g fill="rgb(72%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.3"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.29"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.28"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.27"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.26"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.25"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.24"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.2300"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.2200"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.2100"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.2"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.19"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.18"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.1700"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.1600"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.1500"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.1400"/></g><g fill="rgb(61%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.13"/></g><g fill="rgb(56%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.12"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.1100"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.1000"/></g><g fill="rgb(38%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.0900"/></g><g fill="rgb(31%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.0800"/></g><g fill="rgb(22%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.0700"/></g><g fill="rgb(9%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.0600"/></g><g fill="rgb(-22%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.0500"/></g><g fill="rgb(-49%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.0400"/></g><g fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.0300"/></g><g fill="rgb(-82%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.0200"/></g><g fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0.0100"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="0"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.0100"/></g><g fill="rgb(-80%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.0200"/></g><g fill="rgb(-69%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.0300"/></g><g fill="rgb(-55%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.0400"/></g><g fill="rgb(-39%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.0500"/></g><g fill="rgb(-22%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.0600"/></g><g fill="rgb(-3%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.0700"/></g><g fill="rgb(11%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.0800"/></g><g fill="rgb(18%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.0900"/></g><g fill="rgb(22%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.1000"/></g><g fill="rgb(26%, 52%, 21%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.1100"/></g><g fill="rgb(28%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.12"/></g><g fill="rgb(31%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.13"/></g><g fill="rgb(33%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.14"/></g><g fill="rgb(34%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.1500"/></g><g fill="rgb(35%, 50%, 12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.1600"/></g><g fill="rgb(36%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.1700"/></g><g fill="rgb(37%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.1800"/></g><g fill="rgb(37%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.1900"/></g><g fill="rgb(38%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.2000"/></g><g fill="rgb(38%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.2100"/></g><g fill="rgb(37%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.2200"/></g><g fill="rgb(37%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.2300"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.24"/></g><g fill="rgb(35%, 50%, 12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.25"/></g><g fill="rgb(34%, 50%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.26"/></g><g fill="rgb(32%, 51%, 16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.27"/></g><g fill="rgb(30%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.28"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.2900"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.3000"/></g><g fill="rgb(20%, 52%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.3100"/></g><g fill="rgb(15%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.3200"/></g><g fill="rgb(7%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.3300"/></g><g fill="rgb(-11%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.3400"/></g><g fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.35"/></g><g fill="rgb(-46%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.36"/></g><g fill="rgb(-61%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.37"/></g><g fill="rgb(-74%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.38"/></g><g fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.39"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.4"/></g><g fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.4100"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.4200"/></g><g fill="rgb(-78%, 51%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.4300"/></g><g fill="rgb(-62%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.4400"/></g><g fill="rgb(-39%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.4500"/></g><g fill="rgb(-10%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.4600"/></g><g fill="rgb(16%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.47"/></g><g fill="rgb(26%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.48"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.49"/></g><g fill="rgb(41%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.675" y="-0.5"/></g><g fill="rgb(16%, 49%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.49"/></g><g fill="rgb(18%, 48%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.48"/></g><g fill="rgb(20%, 48%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.47"/></g><g fill="rgb(21%, 47%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.4600"/></g><g fill="rgb(23%, 46%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.45"/></g><g fill="rgb(26%, 45%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.44"/></g><g fill="rgb(29%, 44%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.43"/></g><g fill="rgb(33%, 42%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.42"/></g><g fill="rgb(37%, 40%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.41"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.4"/></g><g fill="rgb(46%, 36%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.39"/></g><g fill="rgb(50%, 34%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.38"/></g><g fill="rgb(55%, 31%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.37"/></g><g fill="rgb(59%, 29%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.36"/></g><g fill="rgb(63%, 26%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.35"/></g><g fill="rgb(66%, 23%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.3400"/></g><g fill="rgb(70%, 19%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.3300"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.3200"/></g><g fill="rgb(71%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.31"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.3"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.29"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.28"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.27"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.26"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.25"/></g><g fill="rgb(67%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.24"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.2300"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.2200"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.2100"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.2"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.19"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.18"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.1700"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.1600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.1500"/></g><g fill="rgb(59%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.1400"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.13"/></g><g fill="rgb(49%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.12"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.1100"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.1000"/></g><g fill="rgb(28%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.0900"/></g><g fill="rgb(18%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.0800"/></g><g fill="rgb(-4%, 47%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.0700"/></g><g fill="rgb(-35%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.0600"/></g><g fill="rgb(-59%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.0500"/></g><g fill="rgb(-76%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.0400"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.0300"/></g><g fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.0200"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0.0100"/></g><g fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="0"/></g><g fill="rgb(-73%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.0100"/></g><g fill="rgb(-59%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.0200"/></g><g fill="rgb(-43%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.0300"/></g><g fill="rgb(-24%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.0400"/></g><g fill="rgb(-5%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.0500"/></g><g fill="rgb(11%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.0600"/></g><g fill="rgb(18%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.0700"/></g><g fill="rgb(23%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.0800"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.0900"/></g><g fill="rgb(30%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.1000"/></g><g fill="rgb(32%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.1100"/></g><g fill="rgb(34%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.12"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.13"/></g><g fill="rgb(38%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.14"/></g><g fill="rgb(39%, 49%, 7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.1500"/></g><g fill="rgb(40%, 49%, 5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.1600"/></g><g fill="rgb(40%, 49%, 3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.1700"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.1800"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.1900"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.2000"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.2100"/></g><g fill="rgb(40%, 49%, 3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.2200"/></g><g fill="rgb(40%, 49%, 5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.2300"/></g><g fill="rgb(39%, 49%, 7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.24"/></g><g fill="rgb(37%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.25"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.26"/></g><g fill="rgb(34%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.27"/></g><g fill="rgb(32%, 51%, 16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.28"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.2900"/></g><g fill="rgb(26%, 52%, 21%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.3000"/></g><g fill="rgb(22%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.3100"/></g><g fill="rgb(17%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.3200"/></g><g fill="rgb(10%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.3300"/></g><g fill="rgb(-8%, 53%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.3400"/></g><g fill="rgb(-27%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.35"/></g><g fill="rgb(-45%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.36"/></g><g fill="rgb(-61%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.37"/></g><g fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.38"/></g><g fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.39"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.4"/></g><g fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.4100"/></g><g fill="rgb(-86%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.4200"/></g><g fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.4300"/></g><g fill="rgb(-56%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.4400"/></g><g fill="rgb(-31%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.4500"/></g><g fill="rgb(2%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.4600"/></g><g fill="rgb(20%, 44%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.47"/></g><g fill="rgb(29%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.48"/></g><g fill="rgb(37%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.49"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.66" y="-0.5"/></g><g fill="rgb(18%, 48%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.49"/></g><g fill="rgb(20%, 47%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.48"/></g><g fill="rgb(22%, 47%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.47"/></g><g fill="rgb(23%, 46%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.4600"/></g><g fill="rgb(26%, 45%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.45"/></g><g fill="rgb(30%, 44%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.44"/></g><g fill="rgb(34%, 42%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.43"/></g><g fill="rgb(38%, 40%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.42"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.41"/></g><g fill="rgb(47%, 36%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.4"/></g><g fill="rgb(51%, 33%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.39"/></g><g fill="rgb(55%, 31%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.38"/></g><g fill="rgb(59%, 28%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.37"/></g><g fill="rgb(63%, 25%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.36"/></g><g fill="rgb(67%, 22%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.35"/></g><g fill="rgb(70%, 19%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.3400"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.3300"/></g><g fill="rgb(71%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.3200"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.31"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.3"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.29"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.28"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.27"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.26"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.25"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.24"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.2300"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.2200"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.2100"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.2"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.19"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.18"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.1700"/></g><g fill="rgb(62%, 30%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.1600"/></g><g fill="rgb(58%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.1500"/></g><g fill="rgb(52%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.1400"/></g><g fill="rgb(47%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.13"/></g><g fill="rgb(40%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.12"/></g><g fill="rgb(33%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.1100"/></g><g fill="rgb(25%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.1000"/></g><g fill="rgb(13%, 46%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.0900"/></g><g fill="rgb(-17%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.0800"/></g><g fill="rgb(-46%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.0700"/></g><g fill="rgb(-68%, 51%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.0600"/></g><g fill="rgb(-82%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.0500"/></g><g fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.0400"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.0300"/></g><g fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.0200"/></g><g fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0.0100"/></g><g fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="0"/></g><g fill="rgb(-48%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.0100"/></g><g fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.0200"/></g><g fill="rgb(-9%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.0300"/></g><g fill="rgb(10%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.0400"/></g><g fill="rgb(18%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.0500"/></g><g fill="rgb(23%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.0600"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.0700"/></g><g fill="rgb(31%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.0800"/></g><g fill="rgb(33%, 51%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.0900"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.1000"/></g><g fill="rgb(38%, 50%, 8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.1100"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.12"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.13"/></g><g fill="rgb(42%, 48%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.14"/></g><g fill="rgb(43%, 48%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.1500"/></g><g fill="rgb(43%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.1600"/></g><g fill="rgb(44%, 48%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.1700"/></g><g fill="rgb(44%, 48%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.1800"/></g><g fill="rgb(44%, 48%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.1900"/></g><g fill="rgb(44%, 48%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.2000"/></g><g fill="rgb(43%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.2100"/></g><g fill="rgb(43%, 48%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.2200"/></g><g fill="rgb(42%, 48%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.2300"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.24"/></g><g fill="rgb(40%, 49%, 5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.25"/></g><g fill="rgb(38%, 50%, 8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.26"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.27"/></g><g fill="rgb(34%, 50%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.28"/></g><g fill="rgb(31%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.2900"/></g><g fill="rgb(28%, 52%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.3000"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.3100"/></g><g fill="rgb(19%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.3200"/></g><g fill="rgb(11%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.3300"/></g><g fill="rgb(-6%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.3400"/></g><g fill="rgb(-27%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.35"/></g><g fill="rgb(-46%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.36"/></g><g fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.37"/></g><g fill="rgb(-76%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.38"/></g><g fill="rgb(-86%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.39"/></g><g fill="rgb(-90%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.4"/></g><g fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.4100"/></g><g fill="rgb(-83%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.4200"/></g><g fill="rgb(-70%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.4300"/></g><g fill="rgb(-49%, 49%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.4400"/></g><g fill="rgb(-21%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.4500"/></g><g fill="rgb(11%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.4600"/></g><g fill="rgb(23%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.47"/></g><g fill="rgb(32%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.48"/></g><g fill="rgb(39%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.49"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.645" y="-0.5"/></g><g fill="rgb(20%, 47%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.49"/></g><g fill="rgb(22%, 47%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.48"/></g><g fill="rgb(23%, 46%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.47"/></g><g fill="rgb(26%, 45%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.4600"/></g><g fill="rgb(30%, 44%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.45"/></g><g fill="rgb(34%, 42%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.44"/></g><g fill="rgb(38%, 40%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.43"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.42"/></g><g fill="rgb(47%, 36%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.41"/></g><g fill="rgb(51%, 33%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.4"/></g><g fill="rgb(55%, 31%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.39"/></g><g fill="rgb(59%, 28%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.38"/></g><g fill="rgb(63%, 25%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.37"/></g><g fill="rgb(67%, 22%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.36"/></g><g fill="rgb(71%, 19%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.35"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.3400"/></g><g fill="rgb(71%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.3300"/></g><g fill="rgb(71%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.3200"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.31"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.3"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.29"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.28"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.27"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.26"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.25"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.24"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.2300"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.2200"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.2100"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.2"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.19"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.18"/></g><g fill="rgb(61%, 30%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.1700"/></g><g fill="rgb(56%, 33%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.1600"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.1500"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.1400"/></g><g fill="rgb(38%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.13"/></g><g fill="rgb(31%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.12"/></g><g fill="rgb(21%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.1100"/></g><g fill="rgb(5%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.1000"/></g><g fill="rgb(-29%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.0900"/></g><g fill="rgb(-56%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.0800"/></g><g fill="rgb(-75%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.0700"/></g><g fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.0600"/></g><g fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.0500"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.0400"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.0300"/></g><g fill="rgb(-70%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.0200"/></g><g fill="rgb(-55%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0.0100"/></g><g fill="rgb(-36%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="0"/></g><g fill="rgb(-15%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.0100"/></g><g fill="rgb(7%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.0200"/></g><g fill="rgb(17%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.0300"/></g><g fill="rgb(23%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.0400"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.0500"/></g><g fill="rgb(31%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.0600"/></g><g fill="rgb(34%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.0700"/></g><g fill="rgb(37%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.0800"/></g><g fill="rgb(39%, 49%, 7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.0900"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.1000"/></g><g fill="rgb(42%, 48%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.1100"/></g><g fill="rgb(44%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.12"/></g><g fill="rgb(45%, 48%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.13"/></g><g fill="rgb(45%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.14"/></g><g fill="rgb(46%, 47%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.1500"/></g><g fill="rgb(47%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.1600"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.1700"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.1800"/></g><g fill="rgb(47%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.1900"/></g><g fill="rgb(46%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.2000"/></g><g fill="rgb(46%, 47%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.2100"/></g><g fill="rgb(45%, 47%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.2200"/></g><g fill="rgb(44%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.2300"/></g><g fill="rgb(43%, 48%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.24"/></g><g fill="rgb(41%, 49%, 1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.25"/></g><g fill="rgb(40%, 49%, 5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.26"/></g><g fill="rgb(38%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.27"/></g><g fill="rgb(35%, 50%, 12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.28"/></g><g fill="rgb(32%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.2900"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.3000"/></g><g fill="rgb(25%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.3100"/></g><g fill="rgb(20%, 52%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.3200"/></g><g fill="rgb(12%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.3300"/></g><g fill="rgb(-5%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.3400"/></g><g fill="rgb(-27%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.35"/></g><g fill="rgb(-47%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.36"/></g><g fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.37"/></g><g fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.38"/></g><g fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.39"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.4"/></g><g fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.4100"/></g><g fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.4200"/></g><g fill="rgb(-65%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.4300"/></g><g fill="rgb(-42%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.4400"/></g><g fill="rgb(-11%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.4500"/></g><g fill="rgb(16%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.4600"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.47"/></g><g fill="rgb(35%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.48"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.49"/></g><g fill="rgb(48%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.63" y="-0.5"/></g><g fill="rgb(22%, 47%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.49"/></g><g fill="rgb(23%, 46%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.48"/></g><g fill="rgb(26%, 45%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.47"/></g><g fill="rgb(30%, 43%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.4600"/></g><g fill="rgb(34%, 42%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.45"/></g><g fill="rgb(38%, 40%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.44"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.43"/></g><g fill="rgb(47%, 35%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.42"/></g><g fill="rgb(52%, 33%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.41"/></g><g fill="rgb(56%, 30%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.4"/></g><g fill="rgb(60%, 28%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.39"/></g><g fill="rgb(64%, 25%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.38"/></g><g fill="rgb(67%, 22%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.37"/></g><g fill="rgb(71%, 18%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.36"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.35"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.3400"/></g><g fill="rgb(71%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.3300"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.3200"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.31"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.3"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.29"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.28"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.27"/></g><g fill="rgb(67%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.26"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.25"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.24"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.2300"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.2200"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.2100"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.2"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.19"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.18"/></g><g fill="rgb(55%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.1700"/></g><g fill="rgb(49%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.1600"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.1500"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.1400"/></g><g fill="rgb(28%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.13"/></g><g fill="rgb(18%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.12"/></g><g fill="rgb(-7%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.1100"/></g><g fill="rgb(-39%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.1000"/></g><g fill="rgb(-64%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.0900"/></g><g fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.0800"/></g><g fill="rgb(-89%, 53%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.0700"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.0600"/></g><g fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.0500"/></g><g fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.0400"/></g><g fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.0300"/></g><g fill="rgb(-44%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.0200"/></g><g fill="rgb(-23%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0.0100"/></g><g fill="rgb(0%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="0"/></g><g fill="rgb(15%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.0100"/></g><g fill="rgb(22%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.0200"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.0300"/></g><g fill="rgb(31%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.0400"/></g><g fill="rgb(34%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.0500"/></g><g fill="rgb(37%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.0600"/></g><g fill="rgb(40%, 49%, 5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.0700"/></g><g fill="rgb(42%, 49%, 0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.0800"/></g><g fill="rgb(43%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.0900"/></g><g fill="rgb(45%, 47%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.1000"/></g><g fill="rgb(46%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.1100"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.12"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.13"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.14"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.1500"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.1600"/></g><g fill="rgb(49%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.1700"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.1800"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.1900"/></g><g fill="rgb(49%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.2000"/></g><g fill="rgb(48%, 46%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.2100"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.2200"/></g><g fill="rgb(46%, 47%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.2300"/></g><g fill="rgb(45%, 48%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.24"/></g><g fill="rgb(43%, 48%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.25"/></g><g fill="rgb(41%, 49%, 1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.26"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.27"/></g><g fill="rgb(37%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.28"/></g><g fill="rgb(34%, 50%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.2900"/></g><g fill="rgb(30%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.3000"/></g><g fill="rgb(26%, 52%, 21%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.3100"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.3200"/></g><g fill="rgb(13%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.3300"/></g><g fill="rgb(-4%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.3400"/></g><g fill="rgb(-27%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.35"/></g><g fill="rgb(-48%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.36"/></g><g fill="rgb(-65%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.37"/></g><g fill="rgb(-79%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.38"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.39"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.4"/></g><g fill="rgb(-88%, 52%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.4100"/></g><g fill="rgb(-77%, 51%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.4200"/></g><g fill="rgb(-60%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.4300"/></g><g fill="rgb(-34%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.4400"/></g><g fill="rgb(0%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.4500"/></g><g fill="rgb(20%, 44%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.4600"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.47"/></g><g fill="rgb(38%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.48"/></g><g fill="rgb(44%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.49"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.615" y="-0.5"/></g><g fill="rgb(23%, 46%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.49"/></g><g fill="rgb(26%, 45%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.48"/></g><g fill="rgb(30%, 43%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.47"/></g><g fill="rgb(34%, 42%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.4600"/></g><g fill="rgb(39%, 40%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.45"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.44"/></g><g fill="rgb(47%, 35%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.43"/></g><g fill="rgb(52%, 33%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.42"/></g><g fill="rgb(56%, 30%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.41"/></g><g fill="rgb(60%, 28%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.4"/></g><g fill="rgb(64%, 25%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.39"/></g><g fill="rgb(68%, 22%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.38"/></g><g fill="rgb(71%, 18%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.37"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.36"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.35"/></g><g fill="rgb(71%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.3400"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.3300"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.3200"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.31"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.3"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.29"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.28"/></g><g fill="rgb(67%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.27"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.26"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.25"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.24"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.2300"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.2200"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.2100"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.2"/></g><g fill="rgb(59%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.19"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.18"/></g><g fill="rgb(48%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.1700"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.1600"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.1500"/></g><g fill="rgb(26%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.1400"/></g><g fill="rgb(14%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.13"/></g><g fill="rgb(-18%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.12"/></g><g fill="rgb(-48%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.1100"/></g><g fill="rgb(-70%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.1000"/></g><g fill="rgb(-84%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.0900"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.0800"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.0700"/></g><g fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.0600"/></g><g fill="rgb(-70%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.0500"/></g><g fill="rgb(-53%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.0400"/></g><g fill="rgb(-33%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.0300"/></g><g fill="rgb(-9%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.0200"/></g><g fill="rgb(11%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0.0100"/></g><g fill="rgb(20%, 52%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="0"/></g><g fill="rgb(26%, 52%, 21%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.0100"/></g><g fill="rgb(30%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.0200"/></g><g fill="rgb(34%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.0300"/></g><g fill="rgb(37%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.0400"/></g><g fill="rgb(40%, 49%, 4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.0500"/></g><g fill="rgb(42%, 48%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.0600"/></g><g fill="rgb(44%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.0700"/></g><g fill="rgb(46%, 47%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.0800"/></g><g fill="rgb(47%, 47%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.0900"/></g><g fill="rgb(49%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.1000"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.1100"/></g><g fill="rgb(50%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.12"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.13"/></g><g fill="rgb(51%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.14"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.1500"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.1600"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.1700"/></g><g fill="rgb(51%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.1800"/></g><g fill="rgb(51%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.1900"/></g><g fill="rgb(50%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.2000"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.2100"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.2200"/></g><g fill="rgb(48%, 47%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.2300"/></g><g fill="rgb(46%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.24"/></g><g fill="rgb(45%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.25"/></g><g fill="rgb(43%, 48%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.26"/></g><g fill="rgb(40%, 49%, 3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.27"/></g><g fill="rgb(38%, 50%, 8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.28"/></g><g fill="rgb(35%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.2900"/></g><g fill="rgb(31%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.3000"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.3100"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.3200"/></g><g fill="rgb(14%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.3300"/></g><g fill="rgb(-4%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.3400"/></g><g fill="rgb(-28%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.35"/></g><g fill="rgb(-49%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.36"/></g><g fill="rgb(-67%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.37"/></g><g fill="rgb(-81%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.38"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.39"/></g><g fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.4"/></g><g fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.4100"/></g><g fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.4200"/></g><g fill="rgb(-53%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.4300"/></g><g fill="rgb(-25%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.4400"/></g><g fill="rgb(10%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.4500"/></g><g fill="rgb(24%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.4600"/></g><g fill="rgb(33%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.47"/></g><g fill="rgb(40%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.48"/></g><g fill="rgb(47%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.49"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.6000" y="-0.5"/></g><g fill="rgb(26%, 45%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.49"/></g><g fill="rgb(30%, 43%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.48"/></g><g fill="rgb(34%, 42%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.47"/></g><g fill="rgb(39%, 40%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.4600"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.45"/></g><g fill="rgb(47%, 35%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.44"/></g><g fill="rgb(52%, 33%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.43"/></g><g fill="rgb(56%, 30%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.42"/></g><g fill="rgb(60%, 28%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.41"/></g><g fill="rgb(64%, 25%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.4"/></g><g fill="rgb(68%, 21%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.39"/></g><g fill="rgb(71%, 18%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.38"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.37"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.36"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.35"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.3400"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.3300"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.3200"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.31"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.3"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.29"/></g><g fill="rgb(67%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.28"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.27"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.26"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.25"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.24"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.2300"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.2200"/></g><g fill="rgb(63%, 30%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.2100"/></g><g fill="rgb(58%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.2"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.19"/></g><g fill="rgb(47%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.18"/></g><g fill="rgb(40%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.1700"/></g><g fill="rgb(32%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.1600"/></g><g fill="rgb(23%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.1500"/></g><g fill="rgb(9%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.1400"/></g><g fill="rgb(-27%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.13"/></g><g fill="rgb(-55%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.12"/></g><g fill="rgb(-75%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.1100"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.1000"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.0900"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.0800"/></g><g fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.0700"/></g><g fill="rgb(-63%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.0600"/></g><g fill="rgb(-44%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.0500"/></g><g fill="rgb(-21%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.0400"/></g><g fill="rgb(4%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.0300"/></g><g fill="rgb(17%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.0200"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0.0100"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="0"/></g><g fill="rgb(33%, 51%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.0100"/></g><g fill="rgb(37%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.0200"/></g><g fill="rgb(40%, 49%, 5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.0300"/></g><g fill="rgb(42%, 48%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.0400"/></g><g fill="rgb(45%, 48%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.0500"/></g><g fill="rgb(47%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.0600"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.0700"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.0800"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.0900"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.1000"/></g><g fill="rgb(52%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.1100"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.12"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.13"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.14"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.1500"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.1600"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.1700"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.1800"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.1900"/></g><g fill="rgb(52%, 45%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.2000"/></g><g fill="rgb(51%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.2100"/></g><g fill="rgb(50%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.2200"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.2300"/></g><g fill="rgb(48%, 47%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.24"/></g><g fill="rgb(46%, 47%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.25"/></g><g fill="rgb(44%, 48%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.26"/></g><g fill="rgb(41%, 49%, 0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.27"/></g><g fill="rgb(39%, 49%, 7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.28"/></g><g fill="rgb(36%, 50%, 12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.2900"/></g><g fill="rgb(32%, 51%, 16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.3000"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.3100"/></g><g fill="rgb(22%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.3200"/></g><g fill="rgb(14%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.3300"/></g><g fill="rgb(-5%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.3400"/></g><g fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.35"/></g><g fill="rgb(-51%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.36"/></g><g fill="rgb(-69%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.37"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.38"/></g><g fill="rgb(-90%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.39"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.4"/></g><g fill="rgb(-84%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.4100"/></g><g fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.4200"/></g><g fill="rgb(-46%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.4300"/></g><g fill="rgb(-15%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.4400"/></g><g fill="rgb(15%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.4500"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.4600"/></g><g fill="rgb(35%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.47"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.48"/></g><g fill="rgb(49%, 36%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.49"/></g><g fill="rgb(55%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.585" y="-0.5"/></g><g fill="rgb(30%, 43%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.49"/></g><g fill="rgb(34%, 42%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.48"/></g><g fill="rgb(39%, 40%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.47"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.4600"/></g><g fill="rgb(47%, 35%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.45"/></g><g fill="rgb(52%, 33%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.44"/></g><g fill="rgb(56%, 30%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.43"/></g><g fill="rgb(60%, 28%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.42"/></g><g fill="rgb(64%, 25%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.41"/></g><g fill="rgb(68%, 21%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.4"/></g><g fill="rgb(71%, 18%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.39"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.38"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.37"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.36"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.35"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.3400"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.3300"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.3200"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.31"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.3"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.29"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.28"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.27"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.26"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.25"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.24"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.2300"/></g><g fill="rgb(63%, 30%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.2200"/></g><g fill="rgb(58%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.2100"/></g><g fill="rgb(52%, 34%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.2"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.19"/></g><g fill="rgb(39%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.18"/></g><g fill="rgb(31%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.1700"/></g><g fill="rgb(21%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.1600"/></g><g fill="rgb(1%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.1500"/></g><g fill="rgb(-35%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.1400"/></g><g fill="rgb(-62%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.13"/></g><g fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.12"/></g><g fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.1100"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.1000"/></g><g fill="rgb(-85%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.0900"/></g><g fill="rgb(-73%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.0800"/></g><g fill="rgb(-56%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.0700"/></g><g fill="rgb(-34%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.0600"/></g><g fill="rgb(-9%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.0500"/></g><g fill="rgb(12%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.0400"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.0300"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.0200"/></g><g fill="rgb(32%, 51%, 16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0.0100"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="0"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.0100"/></g><g fill="rgb(42%, 48%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.0200"/></g><g fill="rgb(45%, 48%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.0300"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.0400"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.0500"/></g><g fill="rgb(50%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.0600"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.0700"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.0800"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.0900"/></g><g fill="rgb(54%, 44%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.1000"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.1100"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.12"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.13"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.14"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.1500"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.1600"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.1700"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.1800"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.1900"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.2000"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.2100"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.2200"/></g><g fill="rgb(50%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.2300"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.24"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.25"/></g><g fill="rgb(45%, 47%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.26"/></g><g fill="rgb(42%, 48%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.27"/></g><g fill="rgb(40%, 49%, 5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.28"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.2900"/></g><g fill="rgb(32%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.3000"/></g><g fill="rgb(28%, 52%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.3100"/></g><g fill="rgb(22%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.3200"/></g><g fill="rgb(14%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.3300"/></g><g fill="rgb(-6%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.3400"/></g><g fill="rgb(-31%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.35"/></g><g fill="rgb(-53%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.36"/></g><g fill="rgb(-71%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.37"/></g><g fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.38"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.39"/></g><g fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.4"/></g><g fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.4100"/></g><g fill="rgb(-64%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.4200"/></g><g fill="rgb(-39%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.4300"/></g><g fill="rgb(-4%, 47%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.4400"/></g><g fill="rgb(19%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.4500"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.4600"/></g><g fill="rgb(38%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.47"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.48"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.49"/></g><g fill="rgb(57%, 32%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5700" y="-0.5"/></g><g fill="rgb(34%, 42%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.49"/></g><g fill="rgb(38%, 40%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.48"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.47"/></g><g fill="rgb(47%, 35%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.4600"/></g><g fill="rgb(52%, 33%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.45"/></g><g fill="rgb(56%, 30%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.44"/></g><g fill="rgb(60%, 28%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.43"/></g><g fill="rgb(64%, 25%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.42"/></g><g fill="rgb(68%, 21%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.41"/></g><g fill="rgb(71%, 18%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.4"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.39"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.38"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.37"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.36"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.35"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.3400"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.3300"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.3200"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.31"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.3"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.29"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.28"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.27"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.26"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.25"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.24"/></g><g fill="rgb(62%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.2300"/></g><g fill="rgb(57%, 32%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.2200"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.2100"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.2"/></g><g fill="rgb(37%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.19"/></g><g fill="rgb(29%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.18"/></g><g fill="rgb(18%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.1700"/></g><g fill="rgb(-7%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.1600"/></g><g fill="rgb(-41%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.1500"/></g><g fill="rgb(-67%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.1400"/></g><g fill="rgb(-83%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.13"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.12"/></g><g fill="rgb(-90%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.1100"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.1000"/></g><g fill="rgb(-68%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.0900"/></g><g fill="rgb(-48%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.0800"/></g><g fill="rgb(-24%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.0700"/></g><g fill="rgb(3%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.0600"/></g><g fill="rgb(17%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.0500"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.0400"/></g><g fill="rgb(30%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.0300"/></g><g fill="rgb(34%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.0200"/></g><g fill="rgb(38%, 49%, 8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0.0100"/></g><g fill="rgb(42%, 49%, 0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="0"/></g><g fill="rgb(44%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.0100"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.0200"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.0300"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.0400"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.0500"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.0600"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.0700"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.0800"/></g><g fill="rgb(56%, 43%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.0900"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.1000"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.1100"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.12"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.13"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.14"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.1500"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.1600"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.1700"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.1800"/></g><g fill="rgb(56%, 43%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.1900"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.2000"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.2100"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.2200"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.2300"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.24"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.25"/></g><g fill="rgb(46%, 47%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.26"/></g><g fill="rgb(43%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.27"/></g><g fill="rgb(40%, 49%, 3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.28"/></g><g fill="rgb(37%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.2900"/></g><g fill="rgb(33%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.3000"/></g><g fill="rgb(28%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.3100"/></g><g fill="rgb(22%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.3200"/></g><g fill="rgb(14%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.3300"/></g><g fill="rgb(-7%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.3400"/></g><g fill="rgb(-33%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.35"/></g><g fill="rgb(-56%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.36"/></g><g fill="rgb(-73%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.37"/></g><g fill="rgb(-85%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.38"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.39"/></g><g fill="rgb(-89%, 53%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.4"/></g><g fill="rgb(-78%, 51%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.4100"/></g><g fill="rgb(-59%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.4200"/></g><g fill="rgb(-30%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.4300"/></g><g fill="rgb(7%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.4400"/></g><g fill="rgb(23%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.4500"/></g><g fill="rgb(32%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.4600"/></g><g fill="rgb(40%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.47"/></g><g fill="rgb(47%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.48"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.49"/></g><g fill="rgb(59%, 31%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5550" y="-0.5"/></g><g fill="rgb(38%, 40%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.49"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.48"/></g><g fill="rgb(47%, 35%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.47"/></g><g fill="rgb(51%, 33%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.4600"/></g><g fill="rgb(56%, 30%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.45"/></g><g fill="rgb(60%, 28%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.44"/></g><g fill="rgb(64%, 25%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.43"/></g><g fill="rgb(68%, 22%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.42"/></g><g fill="rgb(71%, 18%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.41"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.4"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.39"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.38"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.37"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.36"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.35"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.3400"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.3300"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.3200"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.31"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.3"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.29"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.28"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.27"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.26"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.25"/></g><g fill="rgb(62%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.24"/></g><g fill="rgb(56%, 33%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.2300"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.2200"/></g><g fill="rgb(44%, 38%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.2100"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.2"/></g><g fill="rgb(28%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.19"/></g><g fill="rgb(16%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.18"/></g><g fill="rgb(-14%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.1700"/></g><g fill="rgb(-47%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.1600"/></g><g fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.1500"/></g><g fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.1400"/></g><g fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.13"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.12"/></g><g fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.1100"/></g><g fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.1000"/></g><g fill="rgb(-40%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.0900"/></g><g fill="rgb(-14%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.0800"/></g><g fill="rgb(11%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.0700"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.0600"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.0500"/></g><g fill="rgb(32%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.0400"/></g><g fill="rgb(37%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.0300"/></g><g fill="rgb(40%, 49%, 3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.0200"/></g><g fill="rgb(44%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0.0100"/></g><g fill="rgb(46%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="0"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.0100"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.0200"/></g><g fill="rgb(52%, 45%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.0300"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.0400"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.0500"/></g><g fill="rgb(56%, 43%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.0600"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.0700"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.0800"/></g><g fill="rgb(58%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.0900"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.1000"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.1100"/></g><g fill="rgb(59%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.12"/></g><g fill="rgb(59%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.13"/></g><g fill="rgb(59%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.14"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.1500"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.1600"/></g><g fill="rgb(59%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.1700"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.1800"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.1900"/></g><g fill="rgb(56%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.2000"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.2100"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.2200"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.2300"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.24"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.25"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.26"/></g><g fill="rgb(44%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.27"/></g><g fill="rgb(41%, 49%, 1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.28"/></g><g fill="rgb(38%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.2900"/></g><g fill="rgb(33%, 51%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.3000"/></g><g fill="rgb(28%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.3100"/></g><g fill="rgb(22%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.3200"/></g><g fill="rgb(13%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.3300"/></g><g fill="rgb(-9%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.3400"/></g><g fill="rgb(-35%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.35"/></g><g fill="rgb(-58%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.36"/></g><g fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.37"/></g><g fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.38"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.39"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.4"/></g><g fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.4100"/></g><g fill="rgb(-53%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.4200"/></g><g fill="rgb(-21%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.4300"/></g><g fill="rgb(13%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.4400"/></g><g fill="rgb(26%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.4500"/></g><g fill="rgb(35%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.4600"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.47"/></g><g fill="rgb(49%, 36%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.48"/></g><g fill="rgb(55%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.49"/></g><g fill="rgb(61%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.54" y="-0.5"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.49"/></g><g fill="rgb(47%, 36%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.48"/></g><g fill="rgb(51%, 33%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.47"/></g><g fill="rgb(55%, 31%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.4600"/></g><g fill="rgb(60%, 28%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.45"/></g><g fill="rgb(64%, 25%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.44"/></g><g fill="rgb(67%, 22%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.43"/></g><g fill="rgb(71%, 18%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.42"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.41"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.4"/></g><g fill="rgb(71%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.39"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.38"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.37"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.36"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.35"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.3400"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.3300"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.3200"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.31"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.3"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.29"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.28"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.27"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.26"/></g><g fill="rgb(61%, 30%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.25"/></g><g fill="rgb(56%, 33%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.24"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.2300"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.2200"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.2100"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.2"/></g><g fill="rgb(14%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.19"/></g><g fill="rgb(-19%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.18"/></g><g fill="rgb(-51%, 49%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.1700"/></g><g fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.1600"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.1500"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.1400"/></g><g fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.13"/></g><g fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.12"/></g><g fill="rgb(-56%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.1100"/></g><g fill="rgb(-33%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.1000"/></g><g fill="rgb(-5%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.0900"/></g><g fill="rgb(15%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.0800"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.0700"/></g><g fill="rgb(30%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.0600"/></g><g fill="rgb(35%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.0500"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.0400"/></g><g fill="rgb(42%, 48%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.0300"/></g><g fill="rgb(45%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.0200"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0.0100"/></g><g fill="rgb(50%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="0"/></g><g fill="rgb(52%, 45%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.0100"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.0200"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.0300"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.0400"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.0500"/></g><g fill="rgb(59%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.0600"/></g><g fill="rgb(59%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.0700"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.0800"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.0900"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.1000"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.1100"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.12"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.13"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.14"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.1500"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.1600"/></g><g fill="rgb(60%, 40%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.1700"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.1800"/></g><g fill="rgb(58%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.1900"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.2000"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.2100"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.2200"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.2300"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.24"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.25"/></g><g fill="rgb(48%, 47%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.26"/></g><g fill="rgb(45%, 48%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.27"/></g><g fill="rgb(42%, 48%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.28"/></g><g fill="rgb(38%, 49%, 8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.2900"/></g><g fill="rgb(34%, 50%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.3000"/></g><g fill="rgb(29%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.3100"/></g><g fill="rgb(22%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.3200"/></g><g fill="rgb(13%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.3300"/></g><g fill="rgb(-11%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.3400"/></g><g fill="rgb(-38%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.35"/></g><g fill="rgb(-60%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.36"/></g><g fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.37"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.38"/></g><g fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.39"/></g><g fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.4"/></g><g fill="rgb(-70%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.4100"/></g><g fill="rgb(-46%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.4200"/></g><g fill="rgb(-12%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.4300"/></g><g fill="rgb(17%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.4400"/></g><g fill="rgb(29%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.4500"/></g><g fill="rgb(37%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.4600"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.47"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.48"/></g><g fill="rgb(57%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.49"/></g><g fill="rgb(62%, 30%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.5250" y="-0.5"/></g><g fill="rgb(46%, 36%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.49"/></g><g fill="rgb(51%, 33%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.48"/></g><g fill="rgb(55%, 31%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.47"/></g><g fill="rgb(59%, 28%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.4600"/></g><g fill="rgb(63%, 25%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.45"/></g><g fill="rgb(67%, 22%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.44"/></g><g fill="rgb(71%, 18%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.43"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.42"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.41"/></g><g fill="rgb(71%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.4"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.39"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.38"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.37"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.36"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.35"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.3400"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.3300"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.3200"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.31"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.3"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.29"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.28"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.27"/></g><g fill="rgb(61%, 30%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.26"/></g><g fill="rgb(56%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.25"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.24"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.2300"/></g><g fill="rgb(35%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.2200"/></g><g fill="rgb(26%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.2100"/></g><g fill="rgb(12%, 46%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.2"/></g><g fill="rgb(-23%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.19"/></g><g fill="rgb(-55%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.18"/></g><g fill="rgb(-77%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.1700"/></g><g fill="rgb(-88%, 53%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.1600"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.1500"/></g><g fill="rgb(-85%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.1400"/></g><g fill="rgb(-71%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.13"/></g><g fill="rgb(-51%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.12"/></g><g fill="rgb(-25%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.1100"/></g><g fill="rgb(4%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.1000"/></g><g fill="rgb(19%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.0900"/></g><g fill="rgb(26%, 52%, 21%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.0800"/></g><g fill="rgb(32%, 51%, 16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.0700"/></g><g fill="rgb(37%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.0600"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.0500"/></g><g fill="rgb(44%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.0400"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.0300"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.0200"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0.0100"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="0"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.0100"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.0200"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.0300"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.0400"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.0500"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.0600"/></g><g fill="rgb(61%, 40%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.0700"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.0800"/></g><g fill="rgb(62%, 39%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.0900"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.1000"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.1100"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.12"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.13"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.14"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.1500"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.1600"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.1700"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.1800"/></g><g fill="rgb(60%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.1900"/></g><g fill="rgb(59%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.2000"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.2100"/></g><g fill="rgb(56%, 43%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.2200"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.2300"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.24"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.25"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.26"/></g><g fill="rgb(45%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.27"/></g><g fill="rgb(42%, 48%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.28"/></g><g fill="rgb(39%, 49%, 7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.2900"/></g><g fill="rgb(34%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.3000"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.3100"/></g><g fill="rgb(22%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.3200"/></g><g fill="rgb(13%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.3300"/></g><g fill="rgb(-13%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.3400"/></g><g fill="rgb(-40%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.35"/></g><g fill="rgb(-63%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.36"/></g><g fill="rgb(-79%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.37"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.38"/></g><g fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.39"/></g><g fill="rgb(-83%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.4"/></g><g fill="rgb(-66%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.4100"/></g><g fill="rgb(-39%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.4200"/></g><g fill="rgb(-2%, 47%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.4300"/></g><g fill="rgb(21%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.4400"/></g><g fill="rgb(31%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.4500"/></g><g fill="rgb(39%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.4600"/></g><g fill="rgb(47%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.47"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.48"/></g><g fill="rgb(59%, 31%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.49"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.51" y="-0.5"/></g><g fill="rgb(50%, 34%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.49"/></g><g fill="rgb(55%, 31%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.48"/></g><g fill="rgb(59%, 28%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.47"/></g><g fill="rgb(63%, 26%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.4600"/></g><g fill="rgb(67%, 22%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.45"/></g><g fill="rgb(70%, 19%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.44"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.43"/></g><g fill="rgb(71%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.42"/></g><g fill="rgb(71%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.41"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.4"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.39"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.38"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.37"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.36"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.35"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.3400"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.3300"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.3200"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.31"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.3"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.29"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.28"/></g><g fill="rgb(61%, 30%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.27"/></g><g fill="rgb(56%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.26"/></g><g fill="rgb(49%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.25"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.24"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.2300"/></g><g fill="rgb(25%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.2200"/></g><g fill="rgb(11%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.2100"/></g><g fill="rgb(-27%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.2"/></g><g fill="rgb(-58%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.19"/></g><g fill="rgb(-78%, 51%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.18"/></g><g fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.1700"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.1600"/></g><g fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.1500"/></g><g fill="rgb(-68%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.1400"/></g><g fill="rgb(-46%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.13"/></g><g fill="rgb(-18%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.12"/></g><g fill="rgb(10%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.1100"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.1000"/></g><g fill="rgb(28%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.0900"/></g><g fill="rgb(34%, 50%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.0800"/></g><g fill="rgb(38%, 49%, 7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.0700"/></g><g fill="rgb(42%, 48%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.0600"/></g><g fill="rgb(46%, 47%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.0500"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.0400"/></g><g fill="rgb(51%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.0300"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.0200"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0.0100"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="0"/></g><g fill="rgb(58%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.0100"/></g><g fill="rgb(59%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.0200"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.0300"/></g><g fill="rgb(61%, 40%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.0400"/></g><g fill="rgb(62%, 39%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.0500"/></g><g fill="rgb(62%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.0600"/></g><g fill="rgb(63%, 38%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.0700"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.0800"/></g><g fill="rgb(63%, 38%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.0900"/></g><g fill="rgb(64%, 38%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.1000"/></g><g fill="rgb(64%, 38%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.1100"/></g><g fill="rgb(64%, 38%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.12"/></g><g fill="rgb(63%, 38%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.13"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.14"/></g><g fill="rgb(63%, 38%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.1500"/></g><g fill="rgb(62%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.1600"/></g><g fill="rgb(62%, 39%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.1700"/></g><g fill="rgb(61%, 40%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.1800"/></g><g fill="rgb(60%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.1900"/></g><g fill="rgb(60%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.2000"/></g><g fill="rgb(58%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.2100"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.2200"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.2300"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.24"/></g><g fill="rgb(51%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.25"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.26"/></g><g fill="rgb(46%, 47%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.27"/></g><g fill="rgb(43%, 48%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.28"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.2900"/></g><g fill="rgb(34%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.3000"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.3100"/></g><g fill="rgb(22%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.3200"/></g><g fill="rgb(12%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.3300"/></g><g fill="rgb(-15%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.3400"/></g><g fill="rgb(-43%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.35"/></g><g fill="rgb(-65%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.36"/></g><g fill="rgb(-81%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.37"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.38"/></g><g fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.39"/></g><g fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.4"/></g><g fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.4100"/></g><g fill="rgb(-31%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.4200"/></g><g fill="rgb(8%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.4300"/></g><g fill="rgb(24%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.4400"/></g><g fill="rgb(33%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.4500"/></g><g fill="rgb(41%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.4600"/></g><g fill="rgb(49%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.47"/></g><g fill="rgb(55%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.48"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.49"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4950" y="-0.5"/></g><g fill="rgb(54%, 32%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.49"/></g><g fill="rgb(58%, 29%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.48"/></g><g fill="rgb(62%, 26%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.47"/></g><g fill="rgb(66%, 23%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.4600"/></g><g fill="rgb(70%, 19%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.45"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.44"/></g><g fill="rgb(71%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.43"/></g><g fill="rgb(71%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.42"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.41"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.4"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.39"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.38"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.37"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.36"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.35"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.3400"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.3300"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.3200"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.31"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.3"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.29"/></g><g fill="rgb(61%, 30%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.28"/></g><g fill="rgb(56%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.27"/></g><g fill="rgb(49%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.26"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.25"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.24"/></g><g fill="rgb(25%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.2300"/></g><g fill="rgb(10%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.2200"/></g><g fill="rgb(-29%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.2100"/></g><g fill="rgb(-60%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.2"/></g><g fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.19"/></g><g fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.18"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.1700"/></g><g fill="rgb(-81%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.1600"/></g><g fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.1500"/></g><g fill="rgb(-41%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.1400"/></g><g fill="rgb(-12%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.13"/></g><g fill="rgb(13%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.12"/></g><g fill="rgb(23%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.1100"/></g><g fill="rgb(30%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.1000"/></g><g fill="rgb(35%, 50%, 12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.0900"/></g><g fill="rgb(40%, 49%, 4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.0800"/></g><g fill="rgb(44%, 48%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.0700"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.0600"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.0500"/></g><g fill="rgb(52%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.0400"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.0300"/></g><g fill="rgb(56%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.0200"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0.0100"/></g><g fill="rgb(59%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="0"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.0100"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.0200"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.0300"/></g><g fill="rgb(63%, 38%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.0400"/></g><g fill="rgb(63%, 38%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.0500"/></g><g fill="rgb(64%, 38%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.0600"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.0700"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.0800"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.0900"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.1000"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.1100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.12"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.13"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.14"/></g><g fill="rgb(64%, 38%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.1500"/></g><g fill="rgb(63%, 38%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.1600"/></g><g fill="rgb(63%, 38%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.1700"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.1800"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.1900"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.2000"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.2100"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.2200"/></g><g fill="rgb(56%, 43%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.2300"/></g><g fill="rgb(54%, 44%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.24"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.25"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.26"/></g><g fill="rgb(47%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.27"/></g><g fill="rgb(43%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.28"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.2900"/></g><g fill="rgb(35%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.3000"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.3100"/></g><g fill="rgb(22%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.3200"/></g><g fill="rgb(11%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.3300"/></g><g fill="rgb(-17%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.3400"/></g><g fill="rgb(-45%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.35"/></g><g fill="rgb(-67%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.36"/></g><g fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.37"/></g><g fill="rgb(-90%, 53%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.38"/></g><g fill="rgb(-89%, 53%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.39"/></g><g fill="rgb(-77%, 51%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.4"/></g><g fill="rgb(-56%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.4100"/></g><g fill="rgb(-23%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.4200"/></g><g fill="rgb(13%, 46%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.4300"/></g><g fill="rgb(26%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.4400"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.4500"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.4600"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.47"/></g><g fill="rgb(57%, 32%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.48"/></g><g fill="rgb(62%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.48" y="-0.5"/></g><g fill="rgb(58%, 29%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.49"/></g><g fill="rgb(62%, 26%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.48"/></g><g fill="rgb(66%, 23%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.47"/></g><g fill="rgb(69%, 20%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.4600"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.45"/></g><g fill="rgb(71%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.44"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.43"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.42"/></g><g fill="rgb(69%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.41"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.4"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.39"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.38"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.37"/></g><g fill="rgb(67%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.36"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.35"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.3400"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.3300"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.3200"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.31"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.3"/></g><g fill="rgb(61%, 30%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.29"/></g><g fill="rgb(56%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.28"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.27"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.26"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.25"/></g><g fill="rgb(24%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.24"/></g><g fill="rgb(9%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.2300"/></g><g fill="rgb(-30%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.2200"/></g><g fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.2100"/></g><g fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.2"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.19"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.18"/></g><g fill="rgb(-80%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.1700"/></g><g fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.1600"/></g><g fill="rgb(-37%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.1500"/></g><g fill="rgb(-6%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.1400"/></g><g fill="rgb(16%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.13"/></g><g fill="rgb(25%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.12"/></g><g fill="rgb(31%, 51%, 16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.1100"/></g><g fill="rgb(37%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.1000"/></g><g fill="rgb(41%, 49%, 1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.0900"/></g><g fill="rgb(45%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.0800"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.0700"/></g><g fill="rgb(51%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.0600"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.0500"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.0400"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.0300"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.0200"/></g><g fill="rgb(60%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0.0100"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="0"/></g><g fill="rgb(62%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.0100"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.0200"/></g><g fill="rgb(64%, 38%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.0300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.0400"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.0500"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.0600"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.0700"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.0800"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.0900"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.1000"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.1100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.12"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.13"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.14"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.1500"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.1600"/></g><g fill="rgb(64%, 38%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.1700"/></g><g fill="rgb(63%, 38%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.1800"/></g><g fill="rgb(62%, 39%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.1900"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.2000"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.2100"/></g><g fill="rgb(59%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.2200"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.2300"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.24"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.25"/></g><g fill="rgb(50%, 46%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.26"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.27"/></g><g fill="rgb(44%, 48%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.28"/></g><g fill="rgb(40%, 49%, 5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.2900"/></g><g fill="rgb(35%, 50%, 12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.3000"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.3100"/></g><g fill="rgb(22%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.3200"/></g><g fill="rgb(10%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.3300"/></g><g fill="rgb(-19%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.3400"/></g><g fill="rgb(-47%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.35"/></g><g fill="rgb(-70%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.36"/></g><g fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.37"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.38"/></g><g fill="rgb(-88%, 52%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.39"/></g><g fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.4"/></g><g fill="rgb(-50%, 49%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.4100"/></g><g fill="rgb(-15%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.4200"/></g><g fill="rgb(17%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.4300"/></g><g fill="rgb(29%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.4400"/></g><g fill="rgb(38%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.4500"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.4600"/></g><g fill="rgb(52%, 34%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.47"/></g><g fill="rgb(58%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.48"/></g><g fill="rgb(63%, 30%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4650" y="-0.5"/></g><g fill="rgb(61%, 27%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.49"/></g><g fill="rgb(65%, 24%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.48"/></g><g fill="rgb(69%, 20%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.47"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.4600"/></g><g fill="rgb(72%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.45"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.44"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.43"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.42"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.41"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.4"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.39"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.38"/></g><g fill="rgb(67%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.37"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.36"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.35"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.3400"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.3300"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.3200"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.31"/></g><g fill="rgb(62%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.3"/></g><g fill="rgb(56%, 33%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.29"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.28"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.27"/></g><g fill="rgb(35%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.26"/></g><g fill="rgb(25%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.25"/></g><g fill="rgb(9%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.24"/></g><g fill="rgb(-30%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.2300"/></g><g fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.2200"/></g><g fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.2100"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.2"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.19"/></g><g fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.18"/></g><g fill="rgb(-59%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.1700"/></g><g fill="rgb(-33%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.1600"/></g><g fill="rgb(-2%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.1500"/></g><g fill="rgb(18%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.1400"/></g><g fill="rgb(26%, 52%, 21%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.13"/></g><g fill="rgb(33%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.12"/></g><g fill="rgb(38%, 49%, 8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.1100"/></g><g fill="rgb(42%, 48%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.1000"/></g><g fill="rgb(46%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.0900"/></g><g fill="rgb(49%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.0800"/></g><g fill="rgb(52%, 45%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.0700"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.0600"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.0500"/></g><g fill="rgb(59%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.0400"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.0300"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.0200"/></g><g fill="rgb(62%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0.0100"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="0"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.0100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.0200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.0300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.0400"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.0500"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.0600"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.0700"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.0800"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.0900"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.1000"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.1100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.12"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.13"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.14"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.1500"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.1600"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.1700"/></g><g fill="rgb(64%, 38%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.1800"/></g><g fill="rgb(63%, 38%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.1900"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.2000"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.2100"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.2200"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.2300"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.24"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.25"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.26"/></g><g fill="rgb(48%, 47%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.27"/></g><g fill="rgb(44%, 48%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.28"/></g><g fill="rgb(40%, 49%, 4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.2900"/></g><g fill="rgb(35%, 50%, 12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.3000"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.3100"/></g><g fill="rgb(22%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.3200"/></g><g fill="rgb(10%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.3300"/></g><g fill="rgb(-21%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.3400"/></g><g fill="rgb(-50%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.35"/></g><g fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.36"/></g><g fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.37"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.38"/></g><g fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.39"/></g><g fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.4"/></g><g fill="rgb(-44%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.4100"/></g><g fill="rgb(-7%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.4200"/></g><g fill="rgb(20%, 44%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.4300"/></g><g fill="rgb(31%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.4400"/></g><g fill="rgb(40%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.4500"/></g><g fill="rgb(47%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.4600"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.47"/></g><g fill="rgb(60%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.48"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4500" y="-0.5"/></g><g fill="rgb(64%, 24%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.49"/></g><g fill="rgb(68%, 21%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.48"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.47"/></g><g fill="rgb(72%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.4600"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.45"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.44"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.43"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.42"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.41"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.4"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.39"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.38"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.37"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.36"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.35"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.3400"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.3300"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.3200"/></g><g fill="rgb(62%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.31"/></g><g fill="rgb(57%, 32%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.3"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.29"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.28"/></g><g fill="rgb(35%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.27"/></g><g fill="rgb(25%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.26"/></g><g fill="rgb(10%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.25"/></g><g fill="rgb(-30%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.24"/></g><g fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.2300"/></g><g fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.2200"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.2100"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.2"/></g><g fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.19"/></g><g fill="rgb(-58%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.18"/></g><g fill="rgb(-31%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.1700"/></g><g fill="rgb(2%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.1600"/></g><g fill="rgb(19%, 53%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.1500"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.1400"/></g><g fill="rgb(34%, 50%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.13"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.12"/></g><g fill="rgb(43%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.1100"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.1000"/></g><g fill="rgb(50%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.0900"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.0800"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.0700"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.0600"/></g><g fill="rgb(59%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.0500"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.0400"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.0300"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.0200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0.0100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="0"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.0100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.0200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.0300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.0400"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.0500"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.0600"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.0700"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.0800"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.0900"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.1000"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.1100"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.12"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.13"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.14"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.1500"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.1600"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.1700"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.1800"/></g><g fill="rgb(63%, 38%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.1900"/></g><g fill="rgb(62%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.2000"/></g><g fill="rgb(61%, 40%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.2100"/></g><g fill="rgb(60%, 40%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.2200"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.2300"/></g><g fill="rgb(56%, 43%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.24"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.25"/></g><g fill="rgb(51%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.26"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.27"/></g><g fill="rgb(44%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.28"/></g><g fill="rgb(40%, 49%, 4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.2900"/></g><g fill="rgb(35%, 50%, 12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.3000"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.3100"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.3200"/></g><g fill="rgb(9%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.3300"/></g><g fill="rgb(-23%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.3400"/></g><g fill="rgb(-52%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.35"/></g><g fill="rgb(-73%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.36"/></g><g fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.37"/></g><g fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.38"/></g><g fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.39"/></g><g fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.4"/></g><g fill="rgb(-38%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.4100"/></g><g fill="rgb(2%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.4200"/></g><g fill="rgb(22%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.4300"/></g><g fill="rgb(33%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.4400"/></g><g fill="rgb(41%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.4500"/></g><g fill="rgb(49%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.4600"/></g><g fill="rgb(55%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.47"/></g><g fill="rgb(61%, 31%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.48"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4350" y="-0.5"/></g><g fill="rgb(67%, 22%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.49"/></g><g fill="rgb(71%, 18%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.48"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.47"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.4600"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.45"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.44"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.43"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.42"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.41"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.4"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.39"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.38"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.37"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.36"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.35"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.3400"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.3300"/></g><g fill="rgb(63%, 30%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.3200"/></g><g fill="rgb(57%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.31"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.3"/></g><g fill="rgb(44%, 38%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.29"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.28"/></g><g fill="rgb(26%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.27"/></g><g fill="rgb(11%, 46%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.26"/></g><g fill="rgb(-28%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.25"/></g><g fill="rgb(-60%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.24"/></g><g fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.2300"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.2200"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.2100"/></g><g fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.2"/></g><g fill="rgb(-57%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.19"/></g><g fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.18"/></g><g fill="rgb(5%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.1700"/></g><g fill="rgb(20%, 52%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.1600"/></g><g fill="rgb(28%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.1500"/></g><g fill="rgb(35%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.1400"/></g><g fill="rgb(40%, 49%, 4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.13"/></g><g fill="rgb(44%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.12"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.1100"/></g><g fill="rgb(51%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.1000"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.0900"/></g><g fill="rgb(56%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.0800"/></g><g fill="rgb(58%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.0700"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.0600"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.0500"/></g><g fill="rgb(63%, 38%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.0400"/></g><g fill="rgb(64%, 38%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.0300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.0200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0.0100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="0"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.0100"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.0200"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.0300"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.0400"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.0500"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.0600"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.0700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.0800"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.0900"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.1000"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.1100"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.12"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.13"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.14"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.1500"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.1600"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.1700"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.1800"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.1900"/></g><g fill="rgb(63%, 38%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.2000"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.2100"/></g><g fill="rgb(60%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.2200"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.2300"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.24"/></g><g fill="rgb(54%, 44%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.25"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.26"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.27"/></g><g fill="rgb(45%, 48%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.28"/></g><g fill="rgb(40%, 49%, 3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.2900"/></g><g fill="rgb(35%, 50%, 12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.3000"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.3100"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.3200"/></g><g fill="rgb(8%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.3300"/></g><g fill="rgb(-25%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.3400"/></g><g fill="rgb(-54%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.35"/></g><g fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.36"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.37"/></g><g fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.38"/></g><g fill="rgb(-83%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.39"/></g><g fill="rgb(-63%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.4"/></g><g fill="rgb(-32%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.4100"/></g><g fill="rgb(8%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.4200"/></g><g fill="rgb(25%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.4300"/></g><g fill="rgb(35%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.4400"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.4500"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.4600"/></g><g fill="rgb(57%, 32%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.47"/></g><g fill="rgb(62%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.48"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.4200" y="-0.5"/></g><g fill="rgb(70%, 19%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.49"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.48"/></g><g fill="rgb(71%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.47"/></g><g fill="rgb(71%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.4600"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.45"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.44"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.43"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.42"/></g><g fill="rgb(67%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.41"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.4"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.39"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.38"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.37"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.36"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.35"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.3400"/></g><g fill="rgb(63%, 30%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.3300"/></g><g fill="rgb(58%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.3200"/></g><g fill="rgb(52%, 34%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.31"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.3"/></g><g fill="rgb(37%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.29"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.28"/></g><g fill="rgb(13%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.27"/></g><g fill="rgb(-25%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.26"/></g><g fill="rgb(-58%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.25"/></g><g fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.24"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.2300"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.2200"/></g><g fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.2100"/></g><g fill="rgb(-57%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.2"/></g><g fill="rgb(-28%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.19"/></g><g fill="rgb(6%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.18"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.1700"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.1600"/></g><g fill="rgb(35%, 50%, 12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.1500"/></g><g fill="rgb(40%, 49%, 3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.1400"/></g><g fill="rgb(45%, 47%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.13"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.12"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.1100"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.1000"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.0900"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.0800"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.0700"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.0600"/></g><g fill="rgb(64%, 38%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.0500"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.0400"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.0300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.0200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0.0100"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="0"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.0100"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.0200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.0300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.0400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.0500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.0600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.0700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.0800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.0900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.1000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.1100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.12"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.13"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.14"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.1500"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.1600"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.1700"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.1800"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.1900"/></g><g fill="rgb(64%, 38%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.2000"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.2100"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.2200"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.2300"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.24"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.25"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.26"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.27"/></g><g fill="rgb(45%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.28"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.2900"/></g><g fill="rgb(36%, 50%, 12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.3000"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.3100"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.3200"/></g><g fill="rgb(7%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.3300"/></g><g fill="rgb(-27%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.3400"/></g><g fill="rgb(-56%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.35"/></g><g fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.36"/></g><g fill="rgb(-89%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.37"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.38"/></g><g fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.39"/></g><g fill="rgb(-60%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.4"/></g><g fill="rgb(-26%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.4100"/></g><g fill="rgb(12%, 46%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.4200"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.4300"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.4400"/></g><g fill="rgb(44%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.4500"/></g><g fill="rgb(52%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.4600"/></g><g fill="rgb(58%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.47"/></g><g fill="rgb(63%, 30%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.48"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.49"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.405" y="-0.5"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.49"/></g><g fill="rgb(71%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.48"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.47"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.4600"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.45"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.44"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.43"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.42"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.41"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.4"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.39"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.38"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.37"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.36"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.35"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.3400"/></g><g fill="rgb(59%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.3300"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.3200"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.31"/></g><g fill="rgb(38%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.3"/></g><g fill="rgb(28%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.29"/></g><g fill="rgb(15%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.28"/></g><g fill="rgb(-20%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.27"/></g><g fill="rgb(-56%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.26"/></g><g fill="rgb(-79%, 51%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.25"/></g><g fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.24"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.2300"/></g><g fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.2200"/></g><g fill="rgb(-57%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.2100"/></g><g fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.2"/></g><g fill="rgb(6%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.19"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.18"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.1700"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.1600"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.1500"/></g><g fill="rgb(45%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.1400"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.13"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.12"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.1100"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.1000"/></g><g fill="rgb(60%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.0900"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.0800"/></g><g fill="rgb(63%, 38%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.0700"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.0600"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.0500"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.0400"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.0300"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.0200"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0.0100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="0"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.0100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.0200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.0300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.0400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.0500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.0600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.0700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.0800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.0900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.1000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.1100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.12"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.13"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.14"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.1500"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.1600"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.1700"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.1800"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.1900"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.2000"/></g><g fill="rgb(63%, 38%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.2100"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.2200"/></g><g fill="rgb(60%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.2300"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.24"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.25"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.26"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.27"/></g><g fill="rgb(45%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.28"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.2900"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.3000"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.3100"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.3200"/></g><g fill="rgb(6%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.3300"/></g><g fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.3400"/></g><g fill="rgb(-57%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.35"/></g><g fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.36"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.37"/></g><g fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.38"/></g><g fill="rgb(-79%, 51%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.39"/></g><g fill="rgb(-56%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.4"/></g><g fill="rgb(-21%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.4100"/></g><g fill="rgb(15%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.4200"/></g><g fill="rgb(28%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.4300"/></g><g fill="rgb(38%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.4400"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.4500"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.4600"/></g><g fill="rgb(59%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.47"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.48"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.49"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.39" y="-0.5"/></g><g fill="rgb(72%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.49"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.48"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.47"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.4600"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.45"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.44"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.43"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.42"/></g><g fill="rgb(67%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.41"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.4"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.39"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.38"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.37"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.36"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.35"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.3400"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.3300"/></g><g fill="rgb(47%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.3200"/></g><g fill="rgb(39%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.31"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.3"/></g><g fill="rgb(18%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.29"/></g><g fill="rgb(-15%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.28"/></g><g fill="rgb(-52%, 49%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.27"/></g><g fill="rgb(-77%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.26"/></g><g fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.25"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.24"/></g><g fill="rgb(-79%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.2300"/></g><g fill="rgb(-59%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.2200"/></g><g fill="rgb(-30%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.2100"/></g><g fill="rgb(5%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.2"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.19"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.18"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.1700"/></g><g fill="rgb(41%, 49%, 1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.1600"/></g><g fill="rgb(46%, 47%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.1500"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.1400"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.13"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.12"/></g><g fill="rgb(58%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.1100"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.1000"/></g><g fill="rgb(62%, 39%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.0900"/></g><g fill="rgb(63%, 38%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.0800"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.0700"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.0600"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.0500"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.0400"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.0300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.0200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0.0100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="0"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.0100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.0200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.0300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.0400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.0500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.0600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.0700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.0800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.0900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.1000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.1100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.12"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.13"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.14"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.1500"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.1600"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.1700"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.1800"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.1900"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.2000"/></g><g fill="rgb(63%, 38%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.2100"/></g><g fill="rgb(62%, 39%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.2200"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.2300"/></g><g fill="rgb(58%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.24"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.25"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.26"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.27"/></g><g fill="rgb(46%, 47%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.28"/></g><g fill="rgb(41%, 49%, 1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.2900"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.3000"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.3100"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.3200"/></g><g fill="rgb(6%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.3300"/></g><g fill="rgb(-30%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.3400"/></g><g fill="rgb(-59%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.35"/></g><g fill="rgb(-79%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.36"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.37"/></g><g fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.38"/></g><g fill="rgb(-77%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.39"/></g><g fill="rgb(-52%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.4"/></g><g fill="rgb(-15%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.4100"/></g><g fill="rgb(18%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.4200"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.4300"/></g><g fill="rgb(39%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.4400"/></g><g fill="rgb(47%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.4500"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.4600"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.47"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.48"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.49"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.375" y="-0.5"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.49"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.48"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.47"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.4600"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.45"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.44"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.43"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.42"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.41"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.4"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.39"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.38"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.37"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.36"/></g><g fill="rgb(61%, 30%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.35"/></g><g fill="rgb(55%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.3400"/></g><g fill="rgb(49%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.3300"/></g><g fill="rgb(41%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.3200"/></g><g fill="rgb(32%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.31"/></g><g fill="rgb(20%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.3"/></g><g fill="rgb(-7%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.29"/></g><g fill="rgb(-47%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.28"/></g><g fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.27"/></g><g fill="rgb(-88%, 53%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.26"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.25"/></g><g fill="rgb(-81%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.24"/></g><g fill="rgb(-61%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.2300"/></g><g fill="rgb(-32%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.2200"/></g><g fill="rgb(3%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.2100"/></g><g fill="rgb(20%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.2"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.19"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.18"/></g><g fill="rgb(41%, 49%, 1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.1700"/></g><g fill="rgb(46%, 47%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.1600"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.1500"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.1400"/></g><g fill="rgb(56%, 43%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.13"/></g><g fill="rgb(59%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.12"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.1100"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.1000"/></g><g fill="rgb(64%, 38%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.0900"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.0800"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.0700"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.0600"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.0500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.0400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.0300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.0200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0.0100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="0"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.0100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.0200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.0300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.0400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.0500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.0600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.0700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.0800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.0900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.1000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.1100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.12"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.13"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.14"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.1500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.1600"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.1700"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.1800"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.1900"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.2000"/></g><g fill="rgb(64%, 38%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.2100"/></g><g fill="rgb(62%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.2200"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.2300"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.24"/></g><g fill="rgb(56%, 43%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.25"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.26"/></g><g fill="rgb(50%, 46%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.27"/></g><g fill="rgb(46%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.28"/></g><g fill="rgb(42%, 49%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.2900"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.3000"/></g><g fill="rgb(30%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.3100"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.3200"/></g><g fill="rgb(5%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.3300"/></g><g fill="rgb(-31%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.3400"/></g><g fill="rgb(-60%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.35"/></g><g fill="rgb(-80%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.36"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.37"/></g><g fill="rgb(-89%, 53%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.38"/></g><g fill="rgb(-75%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.39"/></g><g fill="rgb(-48%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.4"/></g><g fill="rgb(-9%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.4100"/></g><g fill="rgb(20%, 44%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.4200"/></g><g fill="rgb(31%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.4300"/></g><g fill="rgb(41%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.4400"/></g><g fill="rgb(48%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.4500"/></g><g fill="rgb(55%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.4600"/></g><g fill="rgb(61%, 30%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.47"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.48"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.49"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.36" y="-0.5"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.49"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.48"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.47"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.4600"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.45"/></g><g fill="rgb(67%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.44"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.43"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.42"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.41"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.4"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.39"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.38"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.37"/></g><g fill="rgb(63%, 30%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.36"/></g><g fill="rgb(57%, 32%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.35"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.3400"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.3300"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.3200"/></g><g fill="rgb(23%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.31"/></g><g fill="rgb(2%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.3"/></g><g fill="rgb(-41%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.29"/></g><g fill="rgb(-70%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.28"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.27"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.26"/></g><g fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.25"/></g><g fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.24"/></g><g fill="rgb(-36%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.2300"/></g><g fill="rgb(-0%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.2200"/></g><g fill="rgb(20%, 52%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.2100"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.2"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.19"/></g><g fill="rgb(41%, 49%, 1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.18"/></g><g fill="rgb(46%, 47%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.1700"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.1600"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.1500"/></g><g fill="rgb(56%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.1400"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.13"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.12"/></g><g fill="rgb(63%, 38%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.1100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.1000"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.0900"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.0800"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.0700"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.0600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.0500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.0400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.0300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.0200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0.0100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="0"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.0100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.0200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.0300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.0400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.0500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.0600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.0700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.0800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.0900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.1000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.1100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.12"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.13"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.14"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.1500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.1600"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.1700"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.1800"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.1900"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.2000"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.2100"/></g><g fill="rgb(63%, 38%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.2200"/></g><g fill="rgb(61%, 40%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.2300"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.24"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.25"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.26"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.27"/></g><g fill="rgb(47%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.28"/></g><g fill="rgb(42%, 48%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.2900"/></g><g fill="rgb(36%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.3000"/></g><g fill="rgb(30%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.3100"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.3200"/></g><g fill="rgb(5%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.3300"/></g><g fill="rgb(-32%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.3400"/></g><g fill="rgb(-61%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.35"/></g><g fill="rgb(-81%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.36"/></g><g fill="rgb(-90%, 53%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.37"/></g><g fill="rgb(-88%, 52%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.38"/></g><g fill="rgb(-73%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.39"/></g><g fill="rgb(-45%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.4"/></g><g fill="rgb(-4%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.4100"/></g><g fill="rgb(21%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.4200"/></g><g fill="rgb(33%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.4300"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.4400"/></g><g fill="rgb(49%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.4500"/></g><g fill="rgb(56%, 33%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.4600"/></g><g fill="rgb(62%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.48"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.49"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.345" y="-0.5"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.49"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.48"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.47"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.4600"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.45"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.44"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.43"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.42"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.41"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.4"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.39"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.38"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.37"/></g><g fill="rgb(58%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.36"/></g><g fill="rgb(52%, 34%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.35"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.3400"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.3300"/></g><g fill="rgb(26%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.3200"/></g><g fill="rgb(10%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.31"/></g><g fill="rgb(-33%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.3"/></g><g fill="rgb(-65%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.29"/></g><g fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.28"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.27"/></g><g fill="rgb(-85%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.26"/></g><g fill="rgb(-67%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.25"/></g><g fill="rgb(-40%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.24"/></g><g fill="rgb(-5%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.2300"/></g><g fill="rgb(18%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.2200"/></g><g fill="rgb(28%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.2100"/></g><g fill="rgb(35%, 50%, 12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.2"/></g><g fill="rgb(41%, 49%, 1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.19"/></g><g fill="rgb(46%, 47%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.18"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.1700"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.1600"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.1500"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.1400"/></g><g fill="rgb(61%, 40%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.13"/></g><g fill="rgb(63%, 38%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.12"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.1100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.1000"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.0900"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.0800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.0700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.0600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.0500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.0400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.0300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.0200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0.0100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="0"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.0100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.0200"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.0300"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.0400"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.0500"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.0600"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.0700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.0800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.0900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.1000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.1100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.12"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.13"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.14"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.1500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.1600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.1700"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.1800"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.1900"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.2000"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.2100"/></g><g fill="rgb(63%, 38%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.2200"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.2300"/></g><g fill="rgb(60%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.24"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.25"/></g><g fill="rgb(54%, 44%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.26"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.27"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.28"/></g><g fill="rgb(42%, 48%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.2900"/></g><g fill="rgb(37%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.3000"/></g><g fill="rgb(30%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.3100"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.3200"/></g><g fill="rgb(5%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.3300"/></g><g fill="rgb(-32%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.3400"/></g><g fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.35"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.36"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.37"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.38"/></g><g fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.39"/></g><g fill="rgb(-42%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.4"/></g><g fill="rgb(0%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.4100"/></g><g fill="rgb(23%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.4200"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.4300"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.4400"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.4500"/></g><g fill="rgb(57%, 32%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.4600"/></g><g fill="rgb(63%, 30%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.48"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.49"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3300" y="-0.5"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.49"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.48"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.47"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.4600"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.45"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.44"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.43"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.42"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.41"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.4"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.39"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.38"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.37"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.36"/></g><g fill="rgb(47%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.35"/></g><g fill="rgb(39%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.3400"/></g><g fill="rgb(29%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.3300"/></g><g fill="rgb(15%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.3200"/></g><g fill="rgb(-23%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.31"/></g><g fill="rgb(-59%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.3"/></g><g fill="rgb(-82%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.29"/></g><g fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.28"/></g><g fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.27"/></g><g fill="rgb(-71%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.26"/></g><g fill="rgb(-45%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.25"/></g><g fill="rgb(-11%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.24"/></g><g fill="rgb(17%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.2300"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.2200"/></g><g fill="rgb(35%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.2100"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.2"/></g><g fill="rgb(46%, 47%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.19"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.18"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.1700"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.1600"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.1500"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.1400"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.13"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.12"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.1100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.1000"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.0900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.0800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.0700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.0600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.0500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.0400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.0300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.0200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0.0100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="0"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.0100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.0200"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.0300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.0400"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.0500"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.0600"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.0700"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.0800"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.0900"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.1000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.1100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.12"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.13"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.14"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.1500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.1600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.1700"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.1800"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.1900"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.2000"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.2100"/></g><g fill="rgb(64%, 38%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.2200"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.2300"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.24"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.25"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.26"/></g><g fill="rgb(51%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.27"/></g><g fill="rgb(47%, 47%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.28"/></g><g fill="rgb(43%, 48%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.2900"/></g><g fill="rgb(37%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.3000"/></g><g fill="rgb(30%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.3100"/></g><g fill="rgb(22%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.3200"/></g><g fill="rgb(5%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.3300"/></g><g fill="rgb(-32%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.3400"/></g><g fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.35"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.36"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.37"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.38"/></g><g fill="rgb(-70%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.39"/></g><g fill="rgb(-39%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.4"/></g><g fill="rgb(4%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.4100"/></g><g fill="rgb(24%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.4200"/></g><g fill="rgb(35%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.4300"/></g><g fill="rgb(44%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.4400"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.4500"/></g><g fill="rgb(58%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.4600"/></g><g fill="rgb(63%, 30%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.48"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.49"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3150" y="-0.5"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.49"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.48"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.47"/></g><g fill="rgb(67%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.4600"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.45"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.44"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.43"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.42"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.41"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.4"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.39"/></g><g fill="rgb(62%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.38"/></g><g fill="rgb(56%, 33%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.37"/></g><g fill="rgb(49%, 36%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.36"/></g><g fill="rgb(41%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.35"/></g><g fill="rgb(32%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.3400"/></g><g fill="rgb(20%, 44%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.3300"/></g><g fill="rgb(-11%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.3200"/></g><g fill="rgb(-51%, 49%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.31"/></g><g fill="rgb(-77%, 51%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.3"/></g><g fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.29"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.28"/></g><g fill="rgb(-76%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.27"/></g><g fill="rgb(-51%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.26"/></g><g fill="rgb(-18%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.25"/></g><g fill="rgb(14%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.24"/></g><g fill="rgb(26%, 52%, 21%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.2300"/></g><g fill="rgb(34%, 50%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.2200"/></g><g fill="rgb(40%, 49%, 4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.2100"/></g><g fill="rgb(45%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.2"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.19"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.18"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.1700"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.1600"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.1500"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.1400"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.13"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.12"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.1100"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.1000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.0900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.0800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.0700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.0600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.0500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.0400"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.0300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.0200"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0.0100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="0"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.0100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.0200"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.0300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.0400"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.0500"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.0600"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.0700"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.0800"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.0900"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.1000"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.1100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.12"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.13"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.14"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.1500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.1600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.1700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.1800"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.1900"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.2000"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.2100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.2200"/></g><g fill="rgb(63%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.2300"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.24"/></g><g fill="rgb(58%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.25"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.26"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.27"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.28"/></g><g fill="rgb(43%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.2900"/></g><g fill="rgb(38%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.3000"/></g><g fill="rgb(31%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.3100"/></g><g fill="rgb(22%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.3200"/></g><g fill="rgb(6%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.3300"/></g><g fill="rgb(-32%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.3400"/></g><g fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.35"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.36"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.37"/></g><g fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.38"/></g><g fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.39"/></g><g fill="rgb(-37%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.4"/></g><g fill="rgb(7%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.4100"/></g><g fill="rgb(25%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.4200"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.4300"/></g><g fill="rgb(44%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.4400"/></g><g fill="rgb(52%, 34%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.4500"/></g><g fill="rgb(58%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.4600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.48"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.49"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.3000" y="-0.5"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.49"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.48"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.47"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.4600"/></g><g fill="rgb(67%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.45"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.44"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.43"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.42"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.41"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.4"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.39"/></g><g fill="rgb(58%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.38"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.37"/></g><g fill="rgb(44%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.36"/></g><g fill="rgb(35%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.35"/></g><g fill="rgb(24%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.3400"/></g><g fill="rgb(3%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.3300"/></g><g fill="rgb(-41%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.3200"/></g><g fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.31"/></g><g fill="rgb(-88%, 52%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.3"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.29"/></g><g fill="rgb(-80%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.28"/></g><g fill="rgb(-58%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.27"/></g><g fill="rgb(-26%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.26"/></g><g fill="rgb(11%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.25"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.24"/></g><g fill="rgb(32%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.2300"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.2200"/></g><g fill="rgb(45%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.2100"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.2"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.19"/></g><g fill="rgb(56%, 43%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.18"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.1700"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.1600"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.1500"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.1400"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.13"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.12"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.1100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.1000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.0900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.0800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.0700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.0600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.0500"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.0400"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.0300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.0200"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0.0100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="0"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.0100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.0200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.0300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.0400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.0500"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.0600"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.0700"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.0800"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.0900"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.1000"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.1100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.12"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.13"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.14"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.1500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.1600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.1700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.1800"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.1900"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.2000"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.2100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.2200"/></g><g fill="rgb(63%, 38%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.2300"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.24"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.25"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.26"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.27"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.28"/></g><g fill="rgb(44%, 48%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.2900"/></g><g fill="rgb(38%, 49%, 8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.3000"/></g><g fill="rgb(31%, 51%, 16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.3100"/></g><g fill="rgb(22%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.3200"/></g><g fill="rgb(7%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.3300"/></g><g fill="rgb(-32%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.3400"/></g><g fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.35"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.36"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.37"/></g><g fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.38"/></g><g fill="rgb(-68%, 51%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.39"/></g><g fill="rgb(-35%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.4"/></g><g fill="rgb(9%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.4100"/></g><g fill="rgb(26%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.4200"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.4300"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.4400"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.4500"/></g><g fill="rgb(59%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.4600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.48"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.49"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2850" y="-0.5"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.49"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.48"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.47"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.4600"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.45"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.44"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.43"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.42"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.41"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.4"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.39"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.38"/></g><g fill="rgb(47%, 37%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.37"/></g><g fill="rgb(38%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.36"/></g><g fill="rgb(28%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.35"/></g><g fill="rgb(13%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.3400"/></g><g fill="rgb(-29%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.3300"/></g><g fill="rgb(-64%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.3200"/></g><g fill="rgb(-84%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.31"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.3"/></g><g fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.29"/></g><g fill="rgb(-65%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.28"/></g><g fill="rgb(-35%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.27"/></g><g fill="rgb(4%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.26"/></g><g fill="rgb(22%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.25"/></g><g fill="rgb(31%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.24"/></g><g fill="rgb(38%, 50%, 8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.2300"/></g><g fill="rgb(44%, 48%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.2200"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.2100"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.2"/></g><g fill="rgb(56%, 43%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.19"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.18"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.1700"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.1600"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.1500"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.1400"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.13"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.12"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.1100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.1000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.0900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.0800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.0700"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.0600"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.0500"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.0400"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.0300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.0200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0.0100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="0"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.0100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.0200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.0300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.0400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.0500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.0600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.0700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.0800"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.0900"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.1000"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.1100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.12"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.13"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.14"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.1500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.1600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.1700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.1800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.1900"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.2000"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.2100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.2200"/></g><g fill="rgb(63%, 38%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.2300"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.24"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.25"/></g><g fill="rgb(56%, 43%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.26"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.27"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.28"/></g><g fill="rgb(44%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.2900"/></g><g fill="rgb(39%, 49%, 7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.3000"/></g><g fill="rgb(32%, 51%, 16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.3100"/></g><g fill="rgb(23%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.3200"/></g><g fill="rgb(8%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.3300"/></g><g fill="rgb(-30%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.3400"/></g><g fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.35"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.36"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.37"/></g><g fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.38"/></g><g fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.39"/></g><g fill="rgb(-34%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.4"/></g><g fill="rgb(10%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.4100"/></g><g fill="rgb(26%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.4200"/></g><g fill="rgb(37%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.4300"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.4400"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.4500"/></g><g fill="rgb(59%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.4600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.48"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.49"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2700" y="-0.5"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.49"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.48"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.47"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.4600"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.45"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.44"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.43"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.42"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.41"/></g><g fill="rgb(62%, 30%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.4"/></g><g fill="rgb(56%, 33%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.39"/></g><g fill="rgb(49%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.38"/></g><g fill="rgb(41%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.37"/></g><g fill="rgb(32%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.36"/></g><g fill="rgb(19%, 44%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.35"/></g><g fill="rgb(-13%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.3400"/></g><g fill="rgb(-53%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.3300"/></g><g fill="rgb(-79%, 52%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.3200"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.31"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.3"/></g><g fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.29"/></g><g fill="rgb(-44%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.28"/></g><g fill="rgb(-7%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.27"/></g><g fill="rgb(19%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.26"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.25"/></g><g fill="rgb(36%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.24"/></g><g fill="rgb(43%, 48%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.2300"/></g><g fill="rgb(48%, 47%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.2200"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.2100"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.2"/></g><g fill="rgb(59%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.19"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.18"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.1700"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.1600"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.1500"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.1400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.13"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.12"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.1100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.1000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.0900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.0800"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.0700"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.0600"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.0500"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.0400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.0300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.0200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0.0100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="0"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.0100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.0200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.0300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.0400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.0500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.0600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.0700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.1000"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.1100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.12"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.13"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.14"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.1500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.1600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.1700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.1800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.1900"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.2000"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.2100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.2200"/></g><g fill="rgb(64%, 38%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.2300"/></g><g fill="rgb(62%, 39%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.24"/></g><g fill="rgb(60%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.25"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.26"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.27"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.28"/></g><g fill="rgb(45%, 47%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.2900"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.3000"/></g><g fill="rgb(32%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.3100"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.3200"/></g><g fill="rgb(9%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.3300"/></g><g fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.3400"/></g><g fill="rgb(-61%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.35"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.36"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.37"/></g><g fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.38"/></g><g fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.39"/></g><g fill="rgb(-33%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.4"/></g><g fill="rgb(11%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.4100"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.4200"/></g><g fill="rgb(37%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.4300"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.4400"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.4500"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.4600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.48"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.49"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2550" y="-0.5"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.49"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.48"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.47"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.4600"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.45"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.44"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.43"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.42"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.41"/></g><g fill="rgb(59%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.4"/></g><g fill="rgb(52%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.39"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.38"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.37"/></g><g fill="rgb(25%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.36"/></g><g fill="rgb(5%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.35"/></g><g fill="rgb(-40%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.3400"/></g><g fill="rgb(-72%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.3300"/></g><g fill="rgb(-88%, 52%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.3200"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.31"/></g><g fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.3"/></g><g fill="rgb(-54%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.29"/></g><g fill="rgb(-19%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.28"/></g><g fill="rgb(14%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.27"/></g><g fill="rgb(26%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.26"/></g><g fill="rgb(35%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.25"/></g><g fill="rgb(41%, 49%, 1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.24"/></g><g fill="rgb(47%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.2300"/></g><g fill="rgb(51%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.2200"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.2100"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.2"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.19"/></g><g fill="rgb(63%, 38%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.18"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.1700"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.1600"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.1500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.1400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.13"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.12"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.1100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.1000"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.0900"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.0800"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.0700"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.0600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.0500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.0400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.0300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.0200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0.0100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="0"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.0100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.0200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.0300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.0400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.0500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.0600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.0700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.1100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.12"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.13"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.14"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.1500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.1600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.1700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.1800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.1900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.2000"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.2100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.2200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.2300"/></g><g fill="rgb(63%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.24"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.25"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.26"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.27"/></g><g fill="rgb(50%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.28"/></g><g fill="rgb(46%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.2900"/></g><g fill="rgb(40%, 49%, 4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.3000"/></g><g fill="rgb(33%, 51%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.3100"/></g><g fill="rgb(25%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.3200"/></g><g fill="rgb(11%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.3300"/></g><g fill="rgb(-27%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.3400"/></g><g fill="rgb(-60%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.35"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.36"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.37"/></g><g fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.38"/></g><g fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.39"/></g><g fill="rgb(-33%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.4"/></g><g fill="rgb(11%, 46%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.4100"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.4200"/></g><g fill="rgb(38%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.4300"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.4400"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.4500"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.4600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.48"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.49"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.24" y="-0.5"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.49"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.48"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.47"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.4600"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.45"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.44"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.43"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.42"/></g><g fill="rgb(62%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.41"/></g><g fill="rgb(55%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.4"/></g><g fill="rgb(48%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.39"/></g><g fill="rgb(40%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.38"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.37"/></g><g fill="rgb(16%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.36"/></g><g fill="rgb(-24%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.35"/></g><g fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.3400"/></g><g fill="rgb(-84%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.3300"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.3200"/></g><g fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.31"/></g><g fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.3"/></g><g fill="rgb(-32%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.29"/></g><g fill="rgb(8%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.28"/></g><g fill="rgb(23%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.27"/></g><g fill="rgb(32%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.26"/></g><g fill="rgb(39%, 49%, 5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.25"/></g><g fill="rgb(45%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.24"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.2300"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.2200"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.2100"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.2"/></g><g fill="rgb(63%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.19"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.18"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.1700"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.1600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.1500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.1400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.13"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.12"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.1100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.1000"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.0900"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.0700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.0600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.0500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.0400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.0300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.0200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0.0100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="0"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.0100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.0200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.0300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.0400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.0500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.0600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.0700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.12"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.13"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.14"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.1500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.1600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.1700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.1800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.1900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.2000"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.2100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.2200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.2300"/></g><g fill="rgb(63%, 38%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.24"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.25"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.26"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.27"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.28"/></g><g fill="rgb(46%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.2900"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.3000"/></g><g fill="rgb(34%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.3100"/></g><g fill="rgb(25%, 52%, 21%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.3200"/></g><g fill="rgb(13%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.3300"/></g><g fill="rgb(-24%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.3400"/></g><g fill="rgb(-58%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.35"/></g><g fill="rgb(-81%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.36"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.37"/></g><g fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.38"/></g><g fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.39"/></g><g fill="rgb(-33%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.4"/></g><g fill="rgb(11%, 46%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.4100"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.4200"/></g><g fill="rgb(38%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.4300"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.4400"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.4500"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.4600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.48"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.49"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2250" y="-0.5"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.49"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.48"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.47"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.4600"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.45"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.44"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.43"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.42"/></g><g fill="rgb(58%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.41"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.4"/></g><g fill="rgb(44%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.39"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.38"/></g><g fill="rgb(23%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.37"/></g><g fill="rgb(-4%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.36"/></g><g fill="rgb(-48%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.35"/></g><g fill="rgb(-76%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.3400"/></g><g fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.3300"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.3200"/></g><g fill="rgb(-73%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.31"/></g><g fill="rgb(-45%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.3"/></g><g fill="rgb(-6%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.29"/></g><g fill="rgb(19%, 52%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.28"/></g><g fill="rgb(30%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.27"/></g><g fill="rgb(37%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.26"/></g><g fill="rgb(44%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.25"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.24"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.2300"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.2200"/></g><g fill="rgb(60%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.2100"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.2"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.19"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.18"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.1700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.1600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.1500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.1400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.13"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.12"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.1100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.1000"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.0700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.0600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.0500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.0400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.0300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.0200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0.0100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="0"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.0100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.0200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.0300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.0400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.0500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.0600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.0700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.13"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.14"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.1500"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.1600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.1700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.1800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.1900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.2000"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.2100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.2200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.2300"/></g><g fill="rgb(63%, 38%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.24"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.25"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.26"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.27"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.28"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.2900"/></g><g fill="rgb(42%, 49%, 0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.3000"/></g><g fill="rgb(35%, 50%, 12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.3100"/></g><g fill="rgb(26%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.3200"/></g><g fill="rgb(14%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.3300"/></g><g fill="rgb(-21%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.3400"/></g><g fill="rgb(-56%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.35"/></g><g fill="rgb(-80%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.36"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.37"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.38"/></g><g fill="rgb(-68%, 51%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.39"/></g><g fill="rgb(-34%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.4"/></g><g fill="rgb(11%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.4100"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.4200"/></g><g fill="rgb(38%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.4300"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.4400"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.4500"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.4600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.48"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.49"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.2100" y="-0.5"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.49"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.48"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.47"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.4600"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.45"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.44"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.43"/></g><g fill="rgb(61%, 30%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.42"/></g><g fill="rgb(55%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.41"/></g><g fill="rgb(47%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.4"/></g><g fill="rgb(39%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.39"/></g><g fill="rgb(28%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.38"/></g><g fill="rgb(13%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.37"/></g><g fill="rgb(-30%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.36"/></g><g fill="rgb(-66%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.35"/></g><g fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.3400"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.3300"/></g><g fill="rgb(-81%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.3200"/></g><g fill="rgb(-57%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.31"/></g><g fill="rgb(-22%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.3"/></g><g fill="rgb(14%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.29"/></g><g fill="rgb(26%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.28"/></g><g fill="rgb(35%, 50%, 12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.27"/></g><g fill="rgb(42%, 49%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.26"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.25"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.24"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.2300"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.2200"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.2100"/></g><g fill="rgb(64%, 38%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.2"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.19"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.18"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.1700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.1600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.1500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.1400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.13"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.12"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.1100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.0700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.0600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.0500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.0400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.0300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.0200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0.0100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="0"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.0100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.0200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.0300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.0400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.0500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.0600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.0700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.13"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.14"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.1500"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.1600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.1700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.1800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.1900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.2000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.2100"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.2200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.2300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.24"/></g><g fill="rgb(62%, 39%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.25"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.26"/></g><g fill="rgb(56%, 43%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.27"/></g><g fill="rgb(52%, 45%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.28"/></g><g fill="rgb(48%, 46%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.2900"/></g><g fill="rgb(42%, 48%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.3000"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.3100"/></g><g fill="rgb(28%, 52%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.3200"/></g><g fill="rgb(16%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.3300"/></g><g fill="rgb(-17%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.3400"/></g><g fill="rgb(-54%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.35"/></g><g fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.36"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.37"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.38"/></g><g fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.39"/></g><g fill="rgb(-36%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.4"/></g><g fill="rgb(10%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.4100"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.4200"/></g><g fill="rgb(38%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.4300"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.4400"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.4500"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.4600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.48"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.49"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1950" y="-0.5"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.49"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.48"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.47"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.4600"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.45"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.44"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.43"/></g><g fill="rgb(58%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.42"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.41"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.4"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.39"/></g><g fill="rgb(22%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.38"/></g><g fill="rgb(-8%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.37"/></g><g fill="rgb(-51%, 49%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.36"/></g><g fill="rgb(-79%, 51%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.35"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.3400"/></g><g fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.3300"/></g><g fill="rgb(-69%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.3200"/></g><g fill="rgb(-38%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.31"/></g><g fill="rgb(3%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.3"/></g><g fill="rgb(22%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.29"/></g><g fill="rgb(32%, 51%, 16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.28"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.27"/></g><g fill="rgb(45%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.26"/></g><g fill="rgb(50%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.25"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.24"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.2300"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.2200"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.2100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.2"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.19"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.18"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.1700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.1600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.1500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.1400"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.13"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.12"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.0700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.0600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.0500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.0400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.0300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.0200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0.0100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="0"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.0100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.0200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.0300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.0400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.0500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.0600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.0700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.14"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.1500"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.1600"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.1700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.1800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.1900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.2000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.2100"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.2200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.2300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.24"/></g><g fill="rgb(62%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.25"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.26"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.27"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.28"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.2900"/></g><g fill="rgb(43%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.3000"/></g><g fill="rgb(37%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.3100"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.3200"/></g><g fill="rgb(18%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.3300"/></g><g fill="rgb(-13%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.3400"/></g><g fill="rgb(-50%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.35"/></g><g fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.36"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.37"/></g><g fill="rgb(-88%, 52%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.38"/></g><g fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.39"/></g><g fill="rgb(-38%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.4"/></g><g fill="rgb(9%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.4100"/></g><g fill="rgb(26%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.4200"/></g><g fill="rgb(37%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.4300"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.4400"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.4500"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.4600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.48"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.49"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1800" y="-0.5"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.49"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.48"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.47"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.4600"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.45"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.44"/></g><g fill="rgb(61%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.43"/></g><g fill="rgb(55%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.42"/></g><g fill="rgb(48%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.41"/></g><g fill="rgb(39%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.4"/></g><g fill="rgb(28%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.39"/></g><g fill="rgb(13%, 46%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.38"/></g><g fill="rgb(-32%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.37"/></g><g fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.36"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.35"/></g><g fill="rgb(-90%, 53%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.3400"/></g><g fill="rgb(-79%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.3300"/></g><g fill="rgb(-53%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.3200"/></g><g fill="rgb(-16%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.31"/></g><g fill="rgb(17%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.3"/></g><g fill="rgb(28%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.29"/></g><g fill="rgb(37%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.28"/></g><g fill="rgb(43%, 48%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.27"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.26"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.25"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.24"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.2300"/></g><g fill="rgb(63%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.2200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.2100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.2"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.19"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.18"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.1700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.1600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.1500"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.1400"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.13"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.0700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.0600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.0500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.0400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.0300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.0200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0.0100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="0"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.0100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.0200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.0300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.0400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.0500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.0600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.0700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.14"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.1500"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.1600"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.1700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.1800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.1900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.2000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.2100"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.2200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.2300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.24"/></g><g fill="rgb(63%, 38%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.25"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.26"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.27"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.28"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.2900"/></g><g fill="rgb(44%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.3000"/></g><g fill="rgb(38%, 49%, 8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.3100"/></g><g fill="rgb(30%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.3200"/></g><g fill="rgb(20%, 52%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.3300"/></g><g fill="rgb(-7%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.3400"/></g><g fill="rgb(-47%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.35"/></g><g fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.36"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.37"/></g><g fill="rgb(-89%, 53%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.38"/></g><g fill="rgb(-73%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.39"/></g><g fill="rgb(-41%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.4"/></g><g fill="rgb(7%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.4100"/></g><g fill="rgb(26%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.4200"/></g><g fill="rgb(37%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.4300"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.4400"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.4500"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.4600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.48"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.49"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1650" y="-0.5"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.49"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.48"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.47"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.4600"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.45"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.44"/></g><g fill="rgb(59%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.43"/></g><g fill="rgb(52%, 34%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.42"/></g><g fill="rgb(44%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.41"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.4"/></g><g fill="rgb(22%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.39"/></g><g fill="rgb(-8%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.38"/></g><g fill="rgb(-51%, 49%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.37"/></g><g fill="rgb(-79%, 52%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.36"/></g><g fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.35"/></g><g fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.3400"/></g><g fill="rgb(-67%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.3300"/></g><g fill="rgb(-35%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.3200"/></g><g fill="rgb(7%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.31"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.3"/></g><g fill="rgb(33%, 51%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.29"/></g><g fill="rgb(40%, 49%, 3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.28"/></g><g fill="rgb(46%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.27"/></g><g fill="rgb(51%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.26"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.25"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.24"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.2300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.2200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.2100"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.2"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.19"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.18"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.1700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.1600"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.1500"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.1400"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.0700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.0600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.0500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.0400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.0300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.0200"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0.0100"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="0"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.0100"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.0200"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.0300"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.0400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.0500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.0600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.0700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.14"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.1500"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.1600"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.1700"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.1800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.1900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.2000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.2100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.2200"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.2300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.24"/></g><g fill="rgb(64%, 38%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.25"/></g><g fill="rgb(61%, 40%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.26"/></g><g fill="rgb(58%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.27"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.28"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.2900"/></g><g fill="rgb(45%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.3000"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.3100"/></g><g fill="rgb(32%, 51%, 16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.3200"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.3300"/></g><g fill="rgb(-1%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.3400"/></g><g fill="rgb(-42%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.35"/></g><g fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.36"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.37"/></g><g fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.38"/></g><g fill="rgb(-75%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.39"/></g><g fill="rgb(-44%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.4"/></g><g fill="rgb(3%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.4100"/></g><g fill="rgb(25%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.4200"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.4300"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.4400"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.4500"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.4600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.48"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.49"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1500" y="-0.5"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.49"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.48"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.47"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.4600"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.45"/></g><g fill="rgb(62%, 30%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.44"/></g><g fill="rgb(56%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.43"/></g><g fill="rgb(48%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.42"/></g><g fill="rgb(40%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.41"/></g><g fill="rgb(29%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.4"/></g><g fill="rgb(14%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.39"/></g><g fill="rgb(-30%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.38"/></g><g fill="rgb(-66%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.37"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.36"/></g><g fill="rgb(-90%, 53%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.35"/></g><g fill="rgb(-79%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.3400"/></g><g fill="rgb(-53%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.3300"/></g><g fill="rgb(-14%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.3200"/></g><g fill="rgb(18%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.31"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.3"/></g><g fill="rgb(37%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.29"/></g><g fill="rgb(44%, 48%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.28"/></g><g fill="rgb(49%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.27"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.26"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.25"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.24"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.2300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.2200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.2100"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.2"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.19"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.18"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.1700"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.1600"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.1500"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.1400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.0700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.0600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.0500"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.0400"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.0300"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.0200"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="0"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.0300"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.0400"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.0500"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.0600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.0700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.14"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.1600"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.1700"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.1800"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.1900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.2000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.2100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.2200"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.2300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.24"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.25"/></g><g fill="rgb(62%, 39%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.26"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.27"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.28"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.2900"/></g><g fill="rgb(46%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.3000"/></g><g fill="rgb(40%, 49%, 3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.3100"/></g><g fill="rgb(33%, 51%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.3200"/></g><g fill="rgb(23%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.3300"/></g><g fill="rgb(6%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.3400"/></g><g fill="rgb(-37%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.35"/></g><g fill="rgb(-69%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.36"/></g><g fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.37"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.38"/></g><g fill="rgb(-77%, 51%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.39"/></g><g fill="rgb(-48%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.4"/></g><g fill="rgb(-2%, 47%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.4100"/></g><g fill="rgb(24%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.4200"/></g><g fill="rgb(35%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.4300"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.4400"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.4500"/></g><g fill="rgb(60%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.4600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.48"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.49"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.135" y="-0.5"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.49"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.48"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.4600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.45"/></g><g fill="rgb(60%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.44"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.43"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.42"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.41"/></g><g fill="rgb(24%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.4"/></g><g fill="rgb(-2%, 47%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.39"/></g><g fill="rgb(-48%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.38"/></g><g fill="rgb(-77%, 51%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.37"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.36"/></g><g fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.35"/></g><g fill="rgb(-68%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.3400"/></g><g fill="rgb(-36%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.3300"/></g><g fill="rgb(7%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.3200"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.31"/></g><g fill="rgb(34%, 50%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.3"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.29"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.28"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.27"/></g><g fill="rgb(56%, 43%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.26"/></g><g fill="rgb(60%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.25"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.24"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.2300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.2200"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.2100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.2"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.19"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.18"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.1700"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.1600"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.1400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.0700"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.0600"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="0"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.0600"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.0700"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.14"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.1600"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.1700"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.1800"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.1900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.2000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.2100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.2200"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.2300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.24"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.25"/></g><g fill="rgb(63%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.26"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.27"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.28"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.2900"/></g><g fill="rgb(48%, 47%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.3000"/></g><g fill="rgb(42%, 48%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.3100"/></g><g fill="rgb(35%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.3200"/></g><g fill="rgb(25%, 52%, 21%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.3300"/></g><g fill="rgb(11%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.3400"/></g><g fill="rgb(-31%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.35"/></g><g fill="rgb(-65%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.36"/></g><g fill="rgb(-85%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.37"/></g><g fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.38"/></g><g fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.39"/></g><g fill="rgb(-52%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.4"/></g><g fill="rgb(-8%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.4100"/></g><g fill="rgb(22%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.4200"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.4300"/></g><g fill="rgb(44%, 38%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.4400"/></g><g fill="rgb(52%, 34%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.4500"/></g><g fill="rgb(59%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.4600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.48"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.49"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.12" y="-0.5"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.49"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.48"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.4600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.45"/></g><g fill="rgb(57%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.44"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.43"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.42"/></g><g fill="rgb(31%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.41"/></g><g fill="rgb(18%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.4"/></g><g fill="rgb(-22%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.39"/></g><g fill="rgb(-62%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.38"/></g><g fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.37"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.36"/></g><g fill="rgb(-80%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.35"/></g><g fill="rgb(-55%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.3400"/></g><g fill="rgb(-17%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.3300"/></g><g fill="rgb(17%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.3200"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.31"/></g><g fill="rgb(37%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.3"/></g><g fill="rgb(44%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.29"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.28"/></g><g fill="rgb(54%, 44%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.27"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.26"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.25"/></g><g fill="rgb(64%, 38%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.24"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.2300"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.2100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.2"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.19"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.18"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.1700"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.1400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.0800"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.0700"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="0"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.0700"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.0800"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.14"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.1700"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.1800"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.1900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.2000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.2100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.2300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.24"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.25"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.26"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.27"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.28"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.2900"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.3000"/></g><g fill="rgb(43%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.3100"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.3200"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.3300"/></g><g fill="rgb(14%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.3400"/></g><g fill="rgb(-23%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.35"/></g><g fill="rgb(-60%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.36"/></g><g fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.37"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.38"/></g><g fill="rgb(-82%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.39"/></g><g fill="rgb(-57%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.4"/></g><g fill="rgb(-15%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.4100"/></g><g fill="rgb(20%, 44%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.4200"/></g><g fill="rgb(33%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.4300"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.4400"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.4500"/></g><g fill="rgb(58%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.4600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.48"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.49"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.1050" y="-0.5"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.49"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.48"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.4600"/></g><g fill="rgb(61%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.45"/></g><g fill="rgb(55%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.44"/></g><g fill="rgb(47%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.43"/></g><g fill="rgb(38%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.42"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.41"/></g><g fill="rgb(9%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.4"/></g><g fill="rgb(-40%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.39"/></g><g fill="rgb(-73%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.38"/></g><g fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.37"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.36"/></g><g fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.35"/></g><g fill="rgb(-40%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.3400"/></g><g fill="rgb(3%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.3300"/></g><g fill="rgb(23%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.3200"/></g><g fill="rgb(33%, 51%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.31"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.3"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.29"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.28"/></g><g fill="rgb(56%, 43%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.27"/></g><g fill="rgb(60%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.26"/></g><g fill="rgb(63%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.25"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.24"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.2300"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.2100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.2"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.19"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.18"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.1400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.0900"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="0"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.0900"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.14"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.1700"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.1800"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.1900"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.2000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.2100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.2300"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.24"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.25"/></g><g fill="rgb(64%, 38%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.26"/></g><g fill="rgb(62%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.27"/></g><g fill="rgb(58%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.28"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.2900"/></g><g fill="rgb(50%, 46%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.3000"/></g><g fill="rgb(45%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.3100"/></g><g fill="rgb(38%, 50%, 8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.3200"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.3300"/></g><g fill="rgb(18%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.3400"/></g><g fill="rgb(-15%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.35"/></g><g fill="rgb(-54%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.36"/></g><g fill="rgb(-80%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.37"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.38"/></g><g fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.39"/></g><g fill="rgb(-62%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.4"/></g><g fill="rgb(-22%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.4100"/></g><g fill="rgb(18%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.4200"/></g><g fill="rgb(32%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.4300"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.4400"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.4500"/></g><g fill="rgb(58%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.4600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.48"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.49"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0900" y="-0.5"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.49"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.48"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.47"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.4600"/></g><g fill="rgb(59%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.45"/></g><g fill="rgb(52%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.44"/></g><g fill="rgb(44%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.43"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.42"/></g><g fill="rgb(22%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.41"/></g><g fill="rgb(-9%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.4"/></g><g fill="rgb(-54%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.39"/></g><g fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.38"/></g><g fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.37"/></g><g fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.36"/></g><g fill="rgb(-61%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.35"/></g><g fill="rgb(-24%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.3400"/></g><g fill="rgb(15%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.3300"/></g><g fill="rgb(28%, 52%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.3200"/></g><g fill="rgb(37%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.31"/></g><g fill="rgb(44%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.3"/></g><g fill="rgb(49%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.29"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.28"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.27"/></g><g fill="rgb(61%, 40%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.26"/></g><g fill="rgb(64%, 38%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.25"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.24"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.2300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.2100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.2"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.19"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.18"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.1400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.1100"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.1000"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="0"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.1000"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.14"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.1800"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.1900"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.2000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.2100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.2300"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.24"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.25"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.26"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.27"/></g><g fill="rgb(59%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.28"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.2900"/></g><g fill="rgb(51%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.3000"/></g><g fill="rgb(46%, 47%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.3100"/></g><g fill="rgb(40%, 49%, 5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.3200"/></g><g fill="rgb(32%, 51%, 16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.3300"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.3400"/></g><g fill="rgb(-6%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.35"/></g><g fill="rgb(-47%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.36"/></g><g fill="rgb(-76%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.37"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.38"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.39"/></g><g fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.4"/></g><g fill="rgb(-29%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.4100"/></g><g fill="rgb(15%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.4200"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.4300"/></g><g fill="rgb(40%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.4400"/></g><g fill="rgb(49%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.4500"/></g><g fill="rgb(57%, 32%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.4600"/></g><g fill="rgb(63%, 30%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.48"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.49"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0750" y="-0.5"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.49"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.48"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.47"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.4600"/></g><g fill="rgb(57%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.45"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.44"/></g><g fill="rgb(41%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.43"/></g><g fill="rgb(31%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.42"/></g><g fill="rgb(16%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.41"/></g><g fill="rgb(-26%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.4"/></g><g fill="rgb(-65%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.39"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.38"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.37"/></g><g fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.36"/></g><g fill="rgb(-49%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.35"/></g><g fill="rgb(-7%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.3400"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.3300"/></g><g fill="rgb(32%, 51%, 16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.3200"/></g><g fill="rgb(40%, 49%, 5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.31"/></g><g fill="rgb(46%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.3"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.29"/></g><g fill="rgb(56%, 43%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.28"/></g><g fill="rgb(60%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.27"/></g><g fill="rgb(62%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.26"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.25"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.24"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.2300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.2100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.2"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.19"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.18"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.1400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.12"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.1100"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="0"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.1100"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.14"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.1800"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.1900"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.2000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.2100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.2300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.24"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.25"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.26"/></g><g fill="rgb(63%, 38%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.27"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.28"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.2900"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.3000"/></g><g fill="rgb(48%, 47%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.3100"/></g><g fill="rgb(41%, 49%, 1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.3200"/></g><g fill="rgb(34%, 50%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.3300"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.3400"/></g><g fill="rgb(5%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.35"/></g><g fill="rgb(-39%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.36"/></g><g fill="rgb(-71%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.37"/></g><g fill="rgb(-89%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.38"/></g><g fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.39"/></g><g fill="rgb(-72%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.4"/></g><g fill="rgb(-37%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.4100"/></g><g fill="rgb(11%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.4200"/></g><g fill="rgb(28%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.4300"/></g><g fill="rgb(39%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.4400"/></g><g fill="rgb(48%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.4500"/></g><g fill="rgb(56%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.4600"/></g><g fill="rgb(62%, 30%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.48"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.49"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0600" y="-0.5"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.49"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.48"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.47"/></g><g fill="rgb(62%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.4600"/></g><g fill="rgb(55%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.45"/></g><g fill="rgb(48%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.44"/></g><g fill="rgb(38%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.43"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.42"/></g><g fill="rgb(9%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.41"/></g><g fill="rgb(-40%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.4"/></g><g fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.39"/></g><g fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.38"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.37"/></g><g fill="rgb(-69%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.36"/></g><g fill="rgb(-35%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.35"/></g><g fill="rgb(9%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.3400"/></g><g fill="rgb(25%, 52%, 21%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.3300"/></g><g fill="rgb(35%, 50%, 12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.3200"/></g><g fill="rgb(42%, 48%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.31"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.3"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.29"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.28"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.27"/></g><g fill="rgb(64%, 38%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.26"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.25"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.2300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.2100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.2"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.18"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.1400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.12"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="0"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.1100"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.12"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.14"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.1800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.1900"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.2000"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.2100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.2300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.24"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.25"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.26"/></g><g fill="rgb(64%, 38%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.27"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.28"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.2900"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.3000"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.3100"/></g><g fill="rgb(43%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.3200"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.3300"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.3400"/></g><g fill="rgb(12%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.35"/></g><g fill="rgb(-30%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.36"/></g><g fill="rgb(-65%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.37"/></g><g fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.38"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.39"/></g><g fill="rgb(-77%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.4"/></g><g fill="rgb(-45%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.4100"/></g><g fill="rgb(3%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.4200"/></g><g fill="rgb(25%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.4300"/></g><g fill="rgb(37%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.4400"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.4500"/></g><g fill="rgb(54%, 33%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.4600"/></g><g fill="rgb(61%, 30%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.48"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.49"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0450" y="-0.5"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.48"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.47"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.4600"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.45"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.44"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.43"/></g><g fill="rgb(23%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.42"/></g><g fill="rgb(-6%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.41"/></g><g fill="rgb(-52%, 49%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.4"/></g><g fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.39"/></g><g fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.38"/></g><g fill="rgb(-84%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.37"/></g><g fill="rgb(-60%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.36"/></g><g fill="rgb(-21%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.35"/></g><g fill="rgb(16%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.3400"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.3300"/></g><g fill="rgb(38%, 50%, 8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.3200"/></g><g fill="rgb(45%, 48%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.31"/></g><g fill="rgb(50%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.3"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.29"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.28"/></g><g fill="rgb(62%, 39%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.27"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.26"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.25"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.2300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.2100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.2"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.18"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.1400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.13"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="0"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.12"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.14"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.1800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.1900"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.2000"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.2100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.2300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.24"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.25"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.26"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.27"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.28"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.2900"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.3000"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.3100"/></g><g fill="rgb(45%, 47%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.3200"/></g><g fill="rgb(38%, 49%, 8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.3300"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.3400"/></g><g fill="rgb(17%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.35"/></g><g fill="rgb(-19%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.36"/></g><g fill="rgb(-58%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.37"/></g><g fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.38"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.39"/></g><g fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.4"/></g><g fill="rgb(-54%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.4100"/></g><g fill="rgb(-8%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.4200"/></g><g fill="rgb(23%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.4300"/></g><g fill="rgb(35%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.4400"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.4500"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.4600"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.47"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.48"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.49"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0300" y="-0.5"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.48"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.47"/></g><g fill="rgb(59%, 31%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.4600"/></g><g fill="rgb(52%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.45"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.44"/></g><g fill="rgb(33%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.43"/></g><g fill="rgb(19%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.42"/></g><g fill="rgb(-20%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.41"/></g><g fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.4"/></g><g fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.39"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.38"/></g><g fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.37"/></g><g fill="rgb(-50%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.36"/></g><g fill="rgb(-7%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.35"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.3400"/></g><g fill="rgb(32%, 51%, 16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.3300"/></g><g fill="rgb(40%, 49%, 4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.3200"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.31"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.3"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.29"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.28"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.27"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.26"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.2300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.2200"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.2100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.18"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.1400"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="0"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.13"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.14"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.1800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.1900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.2000"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.2100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.2300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.25"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.26"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.27"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.28"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.2900"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.3000"/></g><g fill="rgb(52%, 45%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.3100"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.3200"/></g><g fill="rgb(40%, 49%, 4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.3300"/></g><g fill="rgb(32%, 51%, 16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.3400"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.35"/></g><g fill="rgb(-7%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.36"/></g><g fill="rgb(-49%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.37"/></g><g fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.38"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.39"/></g><g fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.4"/></g><g fill="rgb(-62%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.4100"/></g><g fill="rgb(-20%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.4200"/></g><g fill="rgb(19%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.4300"/></g><g fill="rgb(33%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.4400"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.4500"/></g><g fill="rgb(52%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.4600"/></g><g fill="rgb(59%, 31%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.47"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.48"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.49"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="-0.0150" y="-0.5"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.48"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.47"/></g><g fill="rgb(57%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.4600"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.45"/></g><g fill="rgb(41%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.44"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.43"/></g><g fill="rgb(15%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.42"/></g><g fill="rgb(-31%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.41"/></g><g fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.4"/></g><g fill="rgb(-88%, 53%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.39"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.38"/></g><g fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.37"/></g><g fill="rgb(-39%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.36"/></g><g fill="rgb(6%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.35"/></g><g fill="rgb(25%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.3400"/></g><g fill="rgb(35%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.3300"/></g><g fill="rgb(42%, 48%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.3200"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.31"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.3"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.29"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.28"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.27"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.26"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.2300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.2200"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.2100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.18"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.1500"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="0"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.14"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.1800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.1900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.2000"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.2100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.2300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.25"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.26"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.27"/></g><g fill="rgb(64%, 37%, 0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.28"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.2900"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.3000"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.3100"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.3200"/></g><g fill="rgb(42%, 48%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.3300"/></g><g fill="rgb(35%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.3400"/></g><g fill="rgb(25%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.35"/></g><g fill="rgb(7%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.36"/></g><g fill="rgb(-39%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.37"/></g><g fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.38"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.39"/></g><g fill="rgb(-88%, 53%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.4"/></g><g fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.4100"/></g><g fill="rgb(-32%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.4200"/></g><g fill="rgb(14%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.4300"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.4400"/></g><g fill="rgb(41%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.4500"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.4600"/></g><g fill="rgb(57%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.47"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.48"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.49"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0" y="-0.5"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.48"/></g><g fill="rgb(63%, 30%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.47"/></g><g fill="rgb(56%, 33%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.4600"/></g><g fill="rgb(48%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.45"/></g><g fill="rgb(39%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.44"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.43"/></g><g fill="rgb(9%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.42"/></g><g fill="rgb(-41%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.41"/></g><g fill="rgb(-75%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.4"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.39"/></g><g fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.38"/></g><g fill="rgb(-65%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.37"/></g><g fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.36"/></g><g fill="rgb(13%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.35"/></g><g fill="rgb(28%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.3400"/></g><g fill="rgb(37%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.3300"/></g><g fill="rgb(44%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.3200"/></g><g fill="rgb(50%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.31"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.3"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.29"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.28"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.27"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.2300"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.2200"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.18"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="0"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.0100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.14"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.1800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.1900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.2000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.2100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.2200"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.2300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.26"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.27"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.28"/></g><g fill="rgb(62%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.2900"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.3000"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.3100"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.3200"/></g><g fill="rgb(45%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.3300"/></g><g fill="rgb(37%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.3400"/></g><g fill="rgb(28%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.35"/></g><g fill="rgb(14%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.36"/></g><g fill="rgb(-27%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.37"/></g><g fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.38"/></g><g fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.39"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.4"/></g><g fill="rgb(-76%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.4100"/></g><g fill="rgb(-43%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.4200"/></g><g fill="rgb(7%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.4300"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.4400"/></g><g fill="rgb(38%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.4500"/></g><g fill="rgb(48%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.4600"/></g><g fill="rgb(56%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.47"/></g><g fill="rgb(62%, 30%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.48"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.49"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0150" y="-0.5"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.48"/></g><g fill="rgb(62%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.47"/></g><g fill="rgb(55%, 33%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.4600"/></g><g fill="rgb(47%, 37%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.45"/></g><g fill="rgb(37%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.44"/></g><g fill="rgb(25%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.43"/></g><g fill="rgb(-0%, 47%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.42"/></g><g fill="rgb(-49%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.41"/></g><g fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.4"/></g><g fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.39"/></g><g fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.38"/></g><g fill="rgb(-59%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.37"/></g><g fill="rgb(-18%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.36"/></g><g fill="rgb(18%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.35"/></g><g fill="rgb(30%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.3400"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.3300"/></g><g fill="rgb(46%, 47%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.3200"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.31"/></g><g fill="rgb(56%, 43%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.3"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.29"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.28"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.27"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.2300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.2200"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.18"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.1600"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="0"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.0200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.14"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.1500"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.1800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.1900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.2000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.2100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.2200"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.2300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.26"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.27"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.28"/></g><g fill="rgb(63%, 38%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.2900"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.3000"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.3100"/></g><g fill="rgb(52%, 45%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.3200"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.3300"/></g><g fill="rgb(40%, 49%, 4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.3400"/></g><g fill="rgb(31%, 51%, 16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.35"/></g><g fill="rgb(20%, 52%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.36"/></g><g fill="rgb(-12%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.37"/></g><g fill="rgb(-54%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.38"/></g><g fill="rgb(-81%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.39"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.4"/></g><g fill="rgb(-82%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.4100"/></g><g fill="rgb(-54%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.4200"/></g><g fill="rgb(-8%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.4300"/></g><g fill="rgb(23%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.4400"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.4500"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.4600"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.47"/></g><g fill="rgb(61%, 31%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.48"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0300" y="-0.5"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.48"/></g><g fill="rgb(61%, 31%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.47"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.4600"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.45"/></g><g fill="rgb(35%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.44"/></g><g fill="rgb(22%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.43"/></g><g fill="rgb(-10%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.42"/></g><g fill="rgb(-56%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.41"/></g><g fill="rgb(-83%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.4"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.39"/></g><g fill="rgb(-80%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.38"/></g><g fill="rgb(-52%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.37"/></g><g fill="rgb(-8%, 53%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.36"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.35"/></g><g fill="rgb(32%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.3400"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.3300"/></g><g fill="rgb(47%, 47%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.3200"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.31"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.3"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.29"/></g><g fill="rgb(64%, 38%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.28"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.27"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.2300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.18"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.1700"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="0"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.14"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.1600"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.1800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.1900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.2000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.2200"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.2300"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.26"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.27"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.28"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.2900"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.3000"/></g><g fill="rgb(58%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.3100"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.3200"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.3300"/></g><g fill="rgb(42%, 48%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.3400"/></g><g fill="rgb(35%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.35"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.36"/></g><g fill="rgb(4%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.37"/></g><g fill="rgb(-42%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.38"/></g><g fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.39"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.4"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.4100"/></g><g fill="rgb(-64%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.4200"/></g><g fill="rgb(-23%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.4300"/></g><g fill="rgb(18%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.4400"/></g><g fill="rgb(33%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.4500"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.4600"/></g><g fill="rgb(52%, 34%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.47"/></g><g fill="rgb(59%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.48"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0450" y="-0.5"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.49"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.48"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.47"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.4600"/></g><g fill="rgb(44%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.45"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.44"/></g><g fill="rgb(20%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.43"/></g><g fill="rgb(-18%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.42"/></g><g fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.41"/></g><g fill="rgb(-86%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.4"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.39"/></g><g fill="rgb(-76%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.38"/></g><g fill="rgb(-45%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.37"/></g><g fill="rgb(1%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.36"/></g><g fill="rgb(23%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.35"/></g><g fill="rgb(34%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.3400"/></g><g fill="rgb(42%, 48%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.3300"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.3200"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.31"/></g><g fill="rgb(58%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.3"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.28"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.24"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.2300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.18"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.1700"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="0"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.14"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.1800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.1900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.2000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.2200"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.2300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.27"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.28"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.2900"/></g><g fill="rgb(63%, 38%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.3000"/></g><g fill="rgb(60%, 40%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.3100"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.3200"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.3300"/></g><g fill="rgb(45%, 47%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.3400"/></g><g fill="rgb(38%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.35"/></g><g fill="rgb(28%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.36"/></g><g fill="rgb(14%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.37"/></g><g fill="rgb(-28%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.38"/></g><g fill="rgb(-66%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.39"/></g><g fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.4"/></g><g fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.4100"/></g><g fill="rgb(-73%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.4200"/></g><g fill="rgb(-38%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.4300"/></g><g fill="rgb(12%, 46%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.4400"/></g><g fill="rgb(29%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.4500"/></g><g fill="rgb(40%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.4600"/></g><g fill="rgb(49%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.47"/></g><g fill="rgb(57%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.48"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0600" y="-0.5"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.49"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.48"/></g><g fill="rgb(59%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.47"/></g><g fill="rgb(52%, 34%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.4600"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.45"/></g><g fill="rgb(32%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.44"/></g><g fill="rgb(18%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.43"/></g><g fill="rgb(-24%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.42"/></g><g fill="rgb(-65%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.41"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.4"/></g><g fill="rgb(-90%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.39"/></g><g fill="rgb(-73%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.38"/></g><g fill="rgb(-39%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.37"/></g><g fill="rgb(8%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.36"/></g><g fill="rgb(26%, 52%, 21%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.35"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.3400"/></g><g fill="rgb(43%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.3300"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.3200"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.31"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.3"/></g><g fill="rgb(62%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.28"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.24"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.2300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.18"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="0"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.14"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.1700"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.1800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.1900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.2000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.2300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.24"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.27"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.28"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.2900"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.3000"/></g><g fill="rgb(61%, 40%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.3100"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.3200"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.3300"/></g><g fill="rgb(47%, 47%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.3400"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.35"/></g><g fill="rgb(32%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.36"/></g><g fill="rgb(20%, 52%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.37"/></g><g fill="rgb(-11%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.38"/></g><g fill="rgb(-54%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.39"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.4"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.4100"/></g><g fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.4200"/></g><g fill="rgb(-51%, 49%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.4300"/></g><g fill="rgb(-3%, 47%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.4400"/></g><g fill="rgb(25%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.4500"/></g><g fill="rgb(37%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.4600"/></g><g fill="rgb(47%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.47"/></g><g fill="rgb(55%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.48"/></g><g fill="rgb(62%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0750" y="-0.5"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.49"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.48"/></g><g fill="rgb(59%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.47"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.4600"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.45"/></g><g fill="rgb(31%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.44"/></g><g fill="rgb(16%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.43"/></g><g fill="rgb(-29%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.42"/></g><g fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.41"/></g><g fill="rgb(-89%, 53%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.4"/></g><g fill="rgb(-89%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.39"/></g><g fill="rgb(-70%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.38"/></g><g fill="rgb(-34%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.37"/></g><g fill="rgb(12%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.36"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.35"/></g><g fill="rgb(37%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.3400"/></g><g fill="rgb(45%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.3300"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.3200"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.31"/></g><g fill="rgb(60%, 40%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.3"/></g><g fill="rgb(63%, 38%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.28"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.24"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.18"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="0"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.14"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.1800"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.1900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.2000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.2300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.24"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.28"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.2900"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.3000"/></g><g fill="rgb(63%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.3100"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.3200"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.3300"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.3400"/></g><g fill="rgb(43%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.35"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.36"/></g><g fill="rgb(25%, 52%, 21%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.37"/></g><g fill="rgb(7%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.38"/></g><g fill="rgb(-40%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.39"/></g><g fill="rgb(-74%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.4"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.4100"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.4200"/></g><g fill="rgb(-64%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.4300"/></g><g fill="rgb(-21%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.4400"/></g><g fill="rgb(19%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.4500"/></g><g fill="rgb(33%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.4600"/></g><g fill="rgb(44%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.47"/></g><g fill="rgb(52%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.48"/></g><g fill="rgb(60%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.49"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.0900" y="-0.5"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.49"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.48"/></g><g fill="rgb(58%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.47"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.4600"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.45"/></g><g fill="rgb(31%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.44"/></g><g fill="rgb(15%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.43"/></g><g fill="rgb(-33%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.42"/></g><g fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.41"/></g><g fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.4"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.39"/></g><g fill="rgb(-67%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.38"/></g><g fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.37"/></g><g fill="rgb(14%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.36"/></g><g fill="rgb(29%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.35"/></g><g fill="rgb(38%, 49%, 8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.3400"/></g><g fill="rgb(45%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.3300"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.3200"/></g><g fill="rgb(56%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.31"/></g><g fill="rgb(60%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.3"/></g><g fill="rgb(63%, 38%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.28"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.24"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.18"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="0"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.14"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.1800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.1900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.2000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.24"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.25"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.28"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.2900"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.3000"/></g><g fill="rgb(64%, 38%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.3100"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.3200"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.3300"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.3400"/></g><g fill="rgb(46%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.35"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.36"/></g><g fill="rgb(30%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.37"/></g><g fill="rgb(17%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.38"/></g><g fill="rgb(-23%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.39"/></g><g fill="rgb(-63%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.4"/></g><g fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.4100"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.4200"/></g><g fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.4300"/></g><g fill="rgb(-39%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.4400"/></g><g fill="rgb(12%, 46%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.4500"/></g><g fill="rgb(29%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.4600"/></g><g fill="rgb(40%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.47"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.48"/></g><g fill="rgb(57%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.49"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1050" y="-0.5"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.49"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.48"/></g><g fill="rgb(58%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.47"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.4600"/></g><g fill="rgb(41%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.45"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.44"/></g><g fill="rgb(14%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.43"/></g><g fill="rgb(-35%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.42"/></g><g fill="rgb(-73%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.41"/></g><g fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.4"/></g><g fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.39"/></g><g fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.38"/></g><g fill="rgb(-25%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.37"/></g><g fill="rgb(16%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.36"/></g><g fill="rgb(30%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.35"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.3400"/></g><g fill="rgb(46%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.3300"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.3200"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.31"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.3"/></g><g fill="rgb(64%, 38%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.28"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.25"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.24"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.19"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="0"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.14"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.1800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.1900"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.2000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.24"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.25"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.28"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.2900"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.3000"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.3100"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.3200"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.3300"/></g><g fill="rgb(54%, 44%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.3400"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.35"/></g><g fill="rgb(42%, 48%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.36"/></g><g fill="rgb(34%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.37"/></g><g fill="rgb(23%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.38"/></g><g fill="rgb(-3%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.39"/></g><g fill="rgb(-49%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.4"/></g><g fill="rgb(-79%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.4100"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.4200"/></g><g fill="rgb(-83%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.4300"/></g><g fill="rgb(-54%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.4400"/></g><g fill="rgb(-6%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.4500"/></g><g fill="rgb(24%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.4600"/></g><g fill="rgb(37%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.47"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.48"/></g><g fill="rgb(55%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.49"/></g><g fill="rgb(62%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1200" y="-0.5"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.49"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.48"/></g><g fill="rgb(58%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.47"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.4600"/></g><g fill="rgb(41%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.45"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.44"/></g><g fill="rgb(13%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.43"/></g><g fill="rgb(-37%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.42"/></g><g fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.41"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.4"/></g><g fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.39"/></g><g fill="rgb(-63%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.38"/></g><g fill="rgb(-22%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.37"/></g><g fill="rgb(17%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.36"/></g><g fill="rgb(30%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.35"/></g><g fill="rgb(39%, 49%, 5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.3400"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.3300"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.3200"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.31"/></g><g fill="rgb(61%, 40%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.3"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.28"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.25"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.24"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.19"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="0"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.14"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.1800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.1900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.2000"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.24"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.25"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.26"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.28"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.2900"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.3000"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.3100"/></g><g fill="rgb(64%, 38%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.3200"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.3300"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.3400"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.35"/></g><g fill="rgb(45%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.36"/></g><g fill="rgb(38%, 50%, 8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.37"/></g><g fill="rgb(28%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.38"/></g><g fill="rgb(13%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.39"/></g><g fill="rgb(-31%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.4"/></g><g fill="rgb(-69%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.4100"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.4200"/></g><g fill="rgb(-88%, 53%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.4300"/></g><g fill="rgb(-68%, 51%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.4400"/></g><g fill="rgb(-27%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.4500"/></g><g fill="rgb(17%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.4600"/></g><g fill="rgb(32%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.47"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.48"/></g><g fill="rgb(52%, 34%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.49"/></g><g fill="rgb(59%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.135" y="-0.5"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.49"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.48"/></g><g fill="rgb(58%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.47"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.4600"/></g><g fill="rgb(41%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.45"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.44"/></g><g fill="rgb(13%, 46%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.43"/></g><g fill="rgb(-37%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.42"/></g><g fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.41"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.4"/></g><g fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.39"/></g><g fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.38"/></g><g fill="rgb(-21%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.37"/></g><g fill="rgb(18%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.36"/></g><g fill="rgb(31%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.35"/></g><g fill="rgb(40%, 49%, 4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.3400"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.3300"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.3200"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.31"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.3"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.28"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.25"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.24"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.19"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="0"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.14"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.1800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.1900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.2000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.24"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.25"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.26"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.28"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.2900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.3000"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.3100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.3200"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.3300"/></g><g fill="rgb(59%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.3400"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.35"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.36"/></g><g fill="rgb(42%, 49%, 0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.37"/></g><g fill="rgb(33%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.38"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.39"/></g><g fill="rgb(-10%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.4"/></g><g fill="rgb(-55%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.4100"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.4200"/></g><g fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.4300"/></g><g fill="rgb(-79%, 51%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.4400"/></g><g fill="rgb(-46%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.4500"/></g><g fill="rgb(6%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.4600"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.47"/></g><g fill="rgb(39%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.48"/></g><g fill="rgb(49%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.49"/></g><g fill="rgb(57%, 32%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1500" y="-0.5"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.49"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.48"/></g><g fill="rgb(58%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.47"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.4600"/></g><g fill="rgb(41%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.45"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.44"/></g><g fill="rgb(13%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.43"/></g><g fill="rgb(-36%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.42"/></g><g fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.41"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.4"/></g><g fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.39"/></g><g fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.38"/></g><g fill="rgb(-20%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.37"/></g><g fill="rgb(18%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.36"/></g><g fill="rgb(31%, 51%, 16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.35"/></g><g fill="rgb(40%, 49%, 4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.3400"/></g><g fill="rgb(47%, 47%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.3300"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.3200"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.31"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.3"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.28"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.25"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.24"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.19"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="0"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.14"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.1800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.1900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.2000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.2100"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.24"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.25"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.26"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.27"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.28"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.2900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.3000"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.3100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.3200"/></g><g fill="rgb(64%, 38%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.3300"/></g><g fill="rgb(60%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.3400"/></g><g fill="rgb(56%, 43%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.35"/></g><g fill="rgb(51%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.36"/></g><g fill="rgb(45%, 47%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.37"/></g><g fill="rgb(37%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.38"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.39"/></g><g fill="rgb(11%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.4"/></g><g fill="rgb(-37%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.4100"/></g><g fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.4200"/></g><g fill="rgb(-90%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.4300"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.4400"/></g><g fill="rgb(-63%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.4500"/></g><g fill="rgb(-18%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.4600"/></g><g fill="rgb(21%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.47"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.48"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.49"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1650" y="-0.5"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.49"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.48"/></g><g fill="rgb(59%, 31%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.47"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.4600"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.45"/></g><g fill="rgb(31%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.44"/></g><g fill="rgb(14%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.43"/></g><g fill="rgb(-34%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.42"/></g><g fill="rgb(-73%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.41"/></g><g fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.4"/></g><g fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.39"/></g><g fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.38"/></g><g fill="rgb(-21%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.37"/></g><g fill="rgb(18%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.36"/></g><g fill="rgb(31%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.35"/></g><g fill="rgb(40%, 49%, 4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.3400"/></g><g fill="rgb(47%, 47%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.3300"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.3200"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.31"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.3"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.28"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.25"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.24"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.19"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="0"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.14"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.1800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.1900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.2000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.2100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.2200"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.24"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.25"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.26"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.27"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.28"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.2900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.3000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.3100"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.3200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.3300"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.3400"/></g><g fill="rgb(59%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.35"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.36"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.37"/></g><g fill="rgb(41%, 49%, 1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.38"/></g><g fill="rgb(32%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.39"/></g><g fill="rgb(20%, 52%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.4"/></g><g fill="rgb(-15%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.4100"/></g><g fill="rgb(-58%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.4200"/></g><g fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.4300"/></g><g fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.4400"/></g><g fill="rgb(-76%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.4500"/></g><g fill="rgb(-40%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.4600"/></g><g fill="rgb(11%, 46%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.47"/></g><g fill="rgb(29%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.48"/></g><g fill="rgb(41%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.49"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1800" y="-0.5"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.49"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.48"/></g><g fill="rgb(59%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.47"/></g><g fill="rgb(52%, 34%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.4600"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.45"/></g><g fill="rgb(32%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.44"/></g><g fill="rgb(16%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.43"/></g><g fill="rgb(-31%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.42"/></g><g fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.41"/></g><g fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.4"/></g><g fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.39"/></g><g fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.38"/></g><g fill="rgb(-23%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.37"/></g><g fill="rgb(17%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.36"/></g><g fill="rgb(31%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.35"/></g><g fill="rgb(40%, 49%, 4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.3400"/></g><g fill="rgb(47%, 47%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.3300"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.3200"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.31"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.3"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.28"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.25"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.24"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.2"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.19"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="0"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.14"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.1500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.1800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.1900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.2000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.2100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.2200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.24"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.25"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.26"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.27"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.28"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.2900"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.3000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.3100"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.3200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.3300"/></g><g fill="rgb(64%, 38%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.3400"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.35"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.36"/></g><g fill="rgb(51%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.37"/></g><g fill="rgb(45%, 47%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.38"/></g><g fill="rgb(37%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.39"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.4"/></g><g fill="rgb(9%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.4100"/></g><g fill="rgb(-39%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.4200"/></g><g fill="rgb(-74%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.4300"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.4400"/></g><g fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.4500"/></g><g fill="rgb(-59%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.4600"/></g><g fill="rgb(-12%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.47"/></g><g fill="rgb(23%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.48"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.49"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.1950" y="-0.5"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.49"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.48"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.47"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.4600"/></g><g fill="rgb(44%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.45"/></g><g fill="rgb(33%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.44"/></g><g fill="rgb(18%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.43"/></g><g fill="rgb(-27%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.42"/></g><g fill="rgb(-68%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.41"/></g><g fill="rgb(-89%, 53%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.4"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.39"/></g><g fill="rgb(-66%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.38"/></g><g fill="rgb(-26%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.37"/></g><g fill="rgb(16%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.36"/></g><g fill="rgb(30%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.35"/></g><g fill="rgb(40%, 49%, 5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.3400"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.3300"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.3200"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.31"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.3"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.28"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.25"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.24"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.2"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.19"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="0"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.14"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.1500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.1600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.1800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.1900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.2000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.2100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.2200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.2300"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.24"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.25"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.26"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.27"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.28"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.2900"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.3000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.3100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.3200"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.3300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.3400"/></g><g fill="rgb(62%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.35"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.36"/></g><g fill="rgb(54%, 44%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.37"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.38"/></g><g fill="rgb(41%, 49%, 1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.39"/></g><g fill="rgb(32%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.4"/></g><g fill="rgb(20%, 52%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.4100"/></g><g fill="rgb(-16%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.4200"/></g><g fill="rgb(-59%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.4300"/></g><g fill="rgb(-85%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.4400"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.4500"/></g><g fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.4600"/></g><g fill="rgb(-37%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.47"/></g><g fill="rgb(13%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.48"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.49"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2100" y="-0.5"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.48"/></g><g fill="rgb(61%, 30%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.47"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.4600"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.45"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.44"/></g><g fill="rgb(20%, 44%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.43"/></g><g fill="rgb(-21%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.42"/></g><g fill="rgb(-65%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.41"/></g><g fill="rgb(-88%, 52%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.4"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.39"/></g><g fill="rgb(-69%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.38"/></g><g fill="rgb(-30%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.37"/></g><g fill="rgb(15%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.36"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.35"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.3400"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.3300"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.3200"/></g><g fill="rgb(58%, 42%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.31"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.3"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.28"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.25"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.24"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.2"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.19"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="0"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.0100"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.0200"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.0300"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.0400"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.14"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.1500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.1600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.1700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.1800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.1900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.2000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.2100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.2200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.2300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.24"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.25"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.26"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.27"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.28"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.2900"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.3000"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.3100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.3200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.3300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.3400"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.35"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.36"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.37"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.38"/></g><g fill="rgb(45%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.39"/></g><g fill="rgb(37%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.4"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.4100"/></g><g fill="rgb(10%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.4200"/></g><g fill="rgb(-39%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.4300"/></g><g fill="rgb(-74%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.4400"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.4500"/></g><g fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.4600"/></g><g fill="rgb(-58%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.47"/></g><g fill="rgb(-10%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.48"/></g><g fill="rgb(23%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.49"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2250" y="-0.5"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.48"/></g><g fill="rgb(62%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.47"/></g><g fill="rgb(55%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.4600"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.45"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.44"/></g><g fill="rgb(22%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.43"/></g><g fill="rgb(-13%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.42"/></g><g fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.41"/></g><g fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.4"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.39"/></g><g fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.38"/></g><g fill="rgb(-35%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.37"/></g><g fill="rgb(12%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.36"/></g><g fill="rgb(28%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.35"/></g><g fill="rgb(38%, 49%, 8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.3400"/></g><g fill="rgb(46%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.3300"/></g><g fill="rgb(52%, 45%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.3200"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.31"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.3"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.28"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.25"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.24"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.2"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.19"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.0200"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.0600"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.14"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.1500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.1600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.1700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.1800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.1900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.2000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.2100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.2200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.2300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.24"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.25"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.26"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.27"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.28"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.2900"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.3000"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.3100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.3200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.3300"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.3400"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.35"/></g><g fill="rgb(63%, 38%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.36"/></g><g fill="rgb(59%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.37"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.38"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.39"/></g><g fill="rgb(42%, 48%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.4"/></g><g fill="rgb(33%, 51%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.4100"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.4200"/></g><g fill="rgb(-13%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.4300"/></g><g fill="rgb(-58%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.4400"/></g><g fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.4500"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.4600"/></g><g fill="rgb(-75%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.47"/></g><g fill="rgb(-37%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.48"/></g><g fill="rgb(14%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.49"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2400" y="-0.5"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.48"/></g><g fill="rgb(63%, 30%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.47"/></g><g fill="rgb(56%, 33%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.4600"/></g><g fill="rgb(48%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.45"/></g><g fill="rgb(38%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.44"/></g><g fill="rgb(25%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.43"/></g><g fill="rgb(-4%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.42"/></g><g fill="rgb(-55%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.41"/></g><g fill="rgb(-84%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.4"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.39"/></g><g fill="rgb(-76%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.38"/></g><g fill="rgb(-41%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.37"/></g><g fill="rgb(9%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.36"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.35"/></g><g fill="rgb(37%, 50%, 9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.3400"/></g><g fill="rgb(45%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.3300"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.3200"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.31"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.3"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.28"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.25"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.24"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.2"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.19"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.0300"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.0700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.0800"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.14"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.1500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.1600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.1700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.1800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.1900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.2000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.2100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.2200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.2300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.24"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.25"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.26"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.27"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.28"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.2900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.3000"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.3100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.3200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.3300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.3400"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.35"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.36"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.37"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.38"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.39"/></g><g fill="rgb(46%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.4"/></g><g fill="rgb(38%, 49%, 7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.4100"/></g><g fill="rgb(28%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.4200"/></g><g fill="rgb(12%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.4300"/></g><g fill="rgb(-36%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.4400"/></g><g fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.4500"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.4600"/></g><g fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.47"/></g><g fill="rgb(-59%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.48"/></g><g fill="rgb(-12%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.49"/></g><g fill="rgb(23%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2550" y="-0.5"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.48"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.47"/></g><g fill="rgb(58%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.4600"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.45"/></g><g fill="rgb(40%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.44"/></g><g fill="rgb(28%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.43"/></g><g fill="rgb(6%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.42"/></g><g fill="rgb(-47%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.41"/></g><g fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.4"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.39"/></g><g fill="rgb(-80%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.38"/></g><g fill="rgb(-48%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.37"/></g><g fill="rgb(2%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.36"/></g><g fill="rgb(25%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.35"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.3400"/></g><g fill="rgb(44%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.3300"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.3200"/></g><g fill="rgb(56%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.31"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.3"/></g><g fill="rgb(64%, 38%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.28"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.25"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.24"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.2"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.19"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.1400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.0400"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.0700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.0800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.0900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.1000"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.14"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.1500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.1600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.1700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.1800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.1900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.2000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.2100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.2200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.2300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.24"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.25"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.26"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.27"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.28"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.2900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.3000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.3100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.3200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.3300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.3400"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.35"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.36"/></g><g fill="rgb(63%, 38%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.37"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.38"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.39"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.4"/></g><g fill="rgb(43%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.4100"/></g><g fill="rgb(34%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.4200"/></g><g fill="rgb(23%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.4300"/></g><g fill="rgb(-7%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.4400"/></g><g fill="rgb(-54%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.4500"/></g><g fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.4600"/></g><g fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.47"/></g><g fill="rgb(-77%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.48"/></g><g fill="rgb(-40%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.49"/></g><g fill="rgb(12%, 46%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.27" y="-0.5"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.49"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.48"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.47"/></g><g fill="rgb(59%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.4600"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.45"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.44"/></g><g fill="rgb(31%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.43"/></g><g fill="rgb(13%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.42"/></g><g fill="rgb(-38%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.41"/></g><g fill="rgb(-76%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.4"/></g><g fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.39"/></g><g fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.38"/></g><g fill="rgb(-55%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.37"/></g><g fill="rgb(-8%, 53%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.36"/></g><g fill="rgb(22%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.35"/></g><g fill="rgb(34%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.3400"/></g><g fill="rgb(43%, 48%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.3300"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.3200"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.31"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.3"/></g><g fill="rgb(64%, 38%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.28"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.25"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.24"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.2"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.19"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.1400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.0500"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.0700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.0800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.0900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.1000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.1100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.14"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.1500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.1600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.1700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.1800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.1900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.2000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.2100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.2200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.2300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.24"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.25"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.26"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.27"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.28"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.2900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.3000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.3100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.3200"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.3300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.3400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.35"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.36"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.37"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.38"/></g><g fill="rgb(59%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.39"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.4"/></g><g fill="rgb(47%, 47%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.4100"/></g><g fill="rgb(40%, 49%, 4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.4200"/></g><g fill="rgb(30%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.4300"/></g><g fill="rgb(16%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.4400"/></g><g fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.4500"/></g><g fill="rgb(-69%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.4600"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.47"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.48"/></g><g fill="rgb(-63%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.49"/></g><g fill="rgb(-17%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.2850" y="-0.5"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.49"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.48"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.47"/></g><g fill="rgb(61%, 31%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.4600"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.45"/></g><g fill="rgb(44%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.44"/></g><g fill="rgb(33%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.43"/></g><g fill="rgb(18%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.42"/></g><g fill="rgb(-27%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.41"/></g><g fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.4"/></g><g fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.39"/></g><g fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.38"/></g><g fill="rgb(-63%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.37"/></g><g fill="rgb(-19%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.36"/></g><g fill="rgb(19%, 53%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.35"/></g><g fill="rgb(32%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.3400"/></g><g fill="rgb(42%, 49%, 0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.3300"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.3200"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.31"/></g><g fill="rgb(59%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.3"/></g><g fill="rgb(63%, 38%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.28"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.25"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.24"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.2"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.19"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.1400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.0700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.0800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.0900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.1000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.1100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.12"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.13"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.14"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.1500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.1600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.1700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.1800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.1900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.2000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.2100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.2200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.2300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.24"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.25"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.26"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.27"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.28"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.2900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.3000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.3100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.3200"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.3300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.3400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.35"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.36"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.37"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.38"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.39"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.4"/></g><g fill="rgb(51%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.4100"/></g><g fill="rgb(45%, 48%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.4200"/></g><g fill="rgb(36%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.4300"/></g><g fill="rgb(25%, 52%, 21%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.4400"/></g><g fill="rgb(3%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.4500"/></g><g fill="rgb(-47%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.4600"/></g><g fill="rgb(-79%, 54%, 49%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.47"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.48"/></g><g fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.49"/></g><g fill="rgb(-46%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3000" y="-0.5"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.49"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.48"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.47"/></g><g fill="rgb(63%, 30%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.4600"/></g><g fill="rgb(56%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.45"/></g><g fill="rgb(47%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.44"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.43"/></g><g fill="rgb(23%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.42"/></g><g fill="rgb(-13%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.41"/></g><g fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.4"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.39"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.38"/></g><g fill="rgb(-70%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.37"/></g><g fill="rgb(-31%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.36"/></g><g fill="rgb(15%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.35"/></g><g fill="rgb(30%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.3400"/></g><g fill="rgb(40%, 49%, 4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.3300"/></g><g fill="rgb(48%, 47%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.3200"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.31"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.3"/></g><g fill="rgb(62%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.28"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.25"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.24"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.2"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.19"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.1400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.0600"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.0700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.0800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.0900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.1000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.1100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.12"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.13"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.14"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.1500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.1600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.1700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.1800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.1900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.2000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.2100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.2200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.2300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.24"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.25"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.26"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.27"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.28"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.2900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.3000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.3100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.3200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.3300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.3400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.35"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.36"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.37"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.38"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.39"/></g><g fill="rgb(60%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.4"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.4100"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.4200"/></g><g fill="rgb(42%, 48%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.4300"/></g><g fill="rgb(33%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.4400"/></g><g fill="rgb(20%, 52%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.4500"/></g><g fill="rgb(-18%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.4600"/></g><g fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.47"/></g><g fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.48"/></g><g fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.49"/></g><g fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3150" y="-0.5"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.49"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.48"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.47"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.4600"/></g><g fill="rgb(58%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.45"/></g><g fill="rgb(49%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.44"/></g><g fill="rgb(40%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.43"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.42"/></g><g fill="rgb(4%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.41"/></g><g fill="rgb(-50%, 49%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.4"/></g><g fill="rgb(-82%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.39"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.38"/></g><g fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.37"/></g><g fill="rgb(-42%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.36"/></g><g fill="rgb(9%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.35"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.3400"/></g><g fill="rgb(38%, 50%, 8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.3300"/></g><g fill="rgb(46%, 47%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.3200"/></g><g fill="rgb(52%, 45%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.31"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.3"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.28"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.25"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.24"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.2"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.19"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.1400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.0600"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.0700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.0800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.0900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.1000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.1100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.12"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.13"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.14"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.1500"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.1600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.1700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.1800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.1900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.2000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.2100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.2200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.2300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.24"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.25"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.26"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.27"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.28"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.2900"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.3000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.3100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.3200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.3300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.3400"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.35"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.36"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.37"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.38"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.39"/></g><g fill="rgb(62%, 39%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.4"/></g><g fill="rgb(58%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.4100"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.4200"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.4300"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.4400"/></g><g fill="rgb(29%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.4500"/></g><g fill="rgb(12%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.4600"/></g><g fill="rgb(-37%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.47"/></g><g fill="rgb(-74%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.48"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.49"/></g><g fill="rgb(-84%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3300" y="-0.5"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.49"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.48"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.47"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.4600"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.45"/></g><g fill="rgb(52%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.44"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.43"/></g><g fill="rgb(31%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.42"/></g><g fill="rgb(14%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.41"/></g><g fill="rgb(-36%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.4"/></g><g fill="rgb(-75%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.39"/></g><g fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.38"/></g><g fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.37"/></g><g fill="rgb(-54%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.36"/></g><g fill="rgb(-6%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.35"/></g><g fill="rgb(23%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.3400"/></g><g fill="rgb(35%, 50%, 12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.3300"/></g><g fill="rgb(44%, 48%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.3200"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.31"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.3"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.29"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.28"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.24"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.19"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.1400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.0700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.0800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.0900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.1000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.1100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.12"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.13"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.14"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.1500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.1600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.1700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.1800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.1900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.2000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.2100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.2200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.2300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.24"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.25"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.26"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.27"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.28"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.2900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.3000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.3100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.3200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.3300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.3400"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.35"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.36"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.37"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.38"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.39"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.4"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.4100"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.4200"/></g><g fill="rgb(51%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.4300"/></g><g fill="rgb(44%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.4400"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.4500"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.4600"/></g><g fill="rgb(-3%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.47"/></g><g fill="rgb(-52%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.48"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.49"/></g><g fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.345" y="-0.5"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.49"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.48"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.4600"/></g><g fill="rgb(62%, 30%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.45"/></g><g fill="rgb(55%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.44"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.43"/></g><g fill="rgb(35%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.42"/></g><g fill="rgb(21%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.41"/></g><g fill="rgb(-20%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.4"/></g><g fill="rgb(-65%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.39"/></g><g fill="rgb(-88%, 53%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.38"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.37"/></g><g fill="rgb(-65%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.36"/></g><g fill="rgb(-22%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.35"/></g><g fill="rgb(19%, 53%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.3400"/></g><g fill="rgb(32%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.3300"/></g><g fill="rgb(42%, 48%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.3200"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.31"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.3"/></g><g fill="rgb(60%, 40%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.29"/></g><g fill="rgb(63%, 38%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.28"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.27"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.24"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.19"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.1400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.0700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.0800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.0900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.1000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.1100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.12"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.13"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.14"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.1500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.1600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.1700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.1800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.1900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.2000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.2100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.2200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.2300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.24"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.25"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.26"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.27"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.28"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.2900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.3000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.3100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.3200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.3300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.3400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.35"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.36"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.37"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.38"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.39"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.4"/></g><g fill="rgb(63%, 38%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.4100"/></g><g fill="rgb(60%, 40%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.4200"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.4300"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.4400"/></g><g fill="rgb(42%, 48%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.4500"/></g><g fill="rgb(32%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.4600"/></g><g fill="rgb(19%, 53%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.47"/></g><g fill="rgb(-21%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.48"/></g><g fill="rgb(-65%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.49"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3600" y="-0.5"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.49"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.48"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.47"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.4600"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.45"/></g><g fill="rgb(58%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.44"/></g><g fill="rgb(49%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.43"/></g><g fill="rgb(39%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.42"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.41"/></g><g fill="rgb(1%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.4"/></g><g fill="rgb(-52%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.39"/></g><g fill="rgb(-83%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.38"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.37"/></g><g fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.36"/></g><g fill="rgb(-37%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.35"/></g><g fill="rgb(12%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.3400"/></g><g fill="rgb(29%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.3300"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.3200"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.31"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.3"/></g><g fill="rgb(59%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.29"/></g><g fill="rgb(62%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.28"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.27"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.24"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.2300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.19"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.0700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.0800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.0900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.1000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.1100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.12"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.13"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.14"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.1500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.1600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.1700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.1800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.1900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.2000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.2100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.2200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.2300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.24"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.25"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.26"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.27"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.28"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.2900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.3000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.3100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.3200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.3300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.3400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.35"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.36"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.37"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.38"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.39"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.4"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.4100"/></g><g fill="rgb(62%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.4200"/></g><g fill="rgb(59%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.4300"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.4400"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.4500"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.4600"/></g><g fill="rgb(29%, 51%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.47"/></g><g fill="rgb(12%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.48"/></g><g fill="rgb(-37%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.49"/></g><g fill="rgb(-74%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.375" y="-0.5"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.49"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.48"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.47"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.4600"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.45"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.44"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.43"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.42"/></g><g fill="rgb(32%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.41"/></g><g fill="rgb(15%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.4"/></g><g fill="rgb(-36%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.39"/></g><g fill="rgb(-75%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.38"/></g><g fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.37"/></g><g fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.36"/></g><g fill="rgb(-52%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.35"/></g><g fill="rgb(-3%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.3400"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.3300"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.3200"/></g><g fill="rgb(45%, 48%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.31"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.3"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.29"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.28"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.27"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.24"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.2300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.19"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.0700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.0800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.0900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.1000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.1100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.12"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.13"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.14"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.1500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.1600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.1700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.1800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.1900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.2000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.2100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.2200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.2300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.24"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.25"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.26"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.27"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.28"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.2900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.3000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.3100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.3200"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.3300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.3400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.35"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.36"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.37"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.38"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.39"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.4"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.4100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.4200"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.4300"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.4400"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.4500"/></g><g fill="rgb(45%, 47%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.4600"/></g><g fill="rgb(36%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.47"/></g><g fill="rgb(25%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.48"/></g><g fill="rgb(-0%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.49"/></g><g fill="rgb(-51%, 54%, 41%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.3900" y="-0.5"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.49"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.48"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.47"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.4600"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.45"/></g><g fill="rgb(63%, 30%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.44"/></g><g fill="rgb(56%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.43"/></g><g fill="rgb(47%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.42"/></g><g fill="rgb(37%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.41"/></g><g fill="rgb(23%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.4"/></g><g fill="rgb(-15%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.39"/></g><g fill="rgb(-63%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.38"/></g><g fill="rgb(-88%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.37"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.36"/></g><g fill="rgb(-66%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.35"/></g><g fill="rgb(-23%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.3400"/></g><g fill="rgb(19%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.3300"/></g><g fill="rgb(32%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.3200"/></g><g fill="rgb(42%, 48%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.31"/></g><g fill="rgb(49%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.3"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.29"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.28"/></g><g fill="rgb(64%, 38%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.27"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.26"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.2300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.19"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.0700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.0800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.0900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.1000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.1100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.12"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.13"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.14"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.1500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.1600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.1700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.1800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.1900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.2000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.2100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.2200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.2300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.24"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.25"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.26"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.27"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.28"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.2900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.3000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.3100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.3200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.3300"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.3400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.35"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.36"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.37"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.38"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.39"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.4"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.4100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.4200"/></g><g fill="rgb(64%, 37%, 0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.4300"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.4400"/></g><g fill="rgb(56%, 43%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.4500"/></g><g fill="rgb(50%, 46%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.4600"/></g><g fill="rgb(43%, 48%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.47"/></g><g fill="rgb(34%, 50%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.48"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.49"/></g><g fill="rgb(-16%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.405" y="-0.5"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.49"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.48"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.47"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.4600"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.45"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.44"/></g><g fill="rgb(59%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.43"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.42"/></g><g fill="rgb(41%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.41"/></g><g fill="rgb(29%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.4"/></g><g fill="rgb(9%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.39"/></g><g fill="rgb(-46%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.38"/></g><g fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.37"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.36"/></g><g fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.35"/></g><g fill="rgb(-42%, 54%, 39%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.3400"/></g><g fill="rgb(10%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.3300"/></g><g fill="rgb(28%, 52%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.3200"/></g><g fill="rgb(38%, 49%, 7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.31"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.3"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.29"/></g><g fill="rgb(58%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.28"/></g><g fill="rgb(62%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.27"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.26"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.2300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.2200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.18"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.0700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.0800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.0900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.1000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.1100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.12"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.13"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.14"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.1500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.1600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.1700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.1800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.1900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.2000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.2100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.2200"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.2300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.24"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.25"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.26"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.27"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.28"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.2900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.3000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.3100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.3200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.3300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.3400"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.35"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.36"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.37"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.38"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.39"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.4"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.4100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.4200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.4300"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.4400"/></g><g fill="rgb(60%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.4500"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.4600"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.47"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.48"/></g><g fill="rgb(31%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.49"/></g><g fill="rgb(16%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4200" y="-0.5"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.49"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.48"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.47"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.4600"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.45"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.44"/></g><g fill="rgb(62%, 30%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.43"/></g><g fill="rgb(55%, 33%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.42"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.41"/></g><g fill="rgb(35%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.4"/></g><g fill="rgb(20%, 44%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.39"/></g><g fill="rgb(-24%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.38"/></g><g fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.37"/></g><g fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.36"/></g><g fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.35"/></g><g fill="rgb(-59%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.3400"/></g><g fill="rgb(-12%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.3300"/></g><g fill="rgb(22%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.3200"/></g><g fill="rgb(35%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.31"/></g><g fill="rgb(44%, 48%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.3"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.29"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.28"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.27"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.26"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.2300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.2200"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.18"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.13"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.0500"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.0600"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.0700"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.0800"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.0900"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.1000"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.1100"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.12"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.13"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.14"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.1500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.1600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.1700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.1800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.1900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.2000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.2100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.2200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.2300"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.24"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.25"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.26"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.27"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.28"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.2900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.3000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.3100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.3200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.3300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.3400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.35"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.36"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.37"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.38"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.39"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.4"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.4100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.4200"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.4300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.4400"/></g><g fill="rgb(63%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.4500"/></g><g fill="rgb(59%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.4600"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.47"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.48"/></g><g fill="rgb(39%, 49%, 7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.49"/></g><g fill="rgb(28%, 52%, 19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4350" y="-0.5"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.49"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.48"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.47"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.4600"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.45"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.44"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.43"/></g><g fill="rgb(58%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.42"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.41"/></g><g fill="rgb(40%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.4"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.39"/></g><g fill="rgb(4%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.38"/></g><g fill="rgb(-51%, 49%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.37"/></g><g fill="rgb(-83%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.36"/></g><g fill="rgb(-90%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.35"/></g><g fill="rgb(-74%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.3400"/></g><g fill="rgb(-35%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.3300"/></g><g fill="rgb(14%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.3200"/></g><g fill="rgb(30%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.31"/></g><g fill="rgb(40%, 49%, 4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.3"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.29"/></g><g fill="rgb(54%, 44%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.28"/></g><g fill="rgb(59%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.27"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.26"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.25"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.2300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.2200"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.18"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.0400"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.0500"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.0600"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.0700"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.0800"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.0900"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.1000"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.1100"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.12"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.13"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.14"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.1500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.1600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.1700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.1800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.1900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.2000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.2100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.2200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.2300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.24"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.25"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.26"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.27"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.28"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.2900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.3000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.3100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.3200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.3300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.3400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.35"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.36"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.37"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.38"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.39"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.4"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.4100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.4200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.4300"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.4400"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.4500"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.4600"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.47"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.48"/></g><g fill="rgb(45%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.49"/></g><g fill="rgb(36%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4500" y="-0.5"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.49"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.48"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.47"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.4600"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.45"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.44"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.43"/></g><g fill="rgb(62%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.42"/></g><g fill="rgb(54%, 33%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.41"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.4"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.39"/></g><g fill="rgb(19%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.38"/></g><g fill="rgb(-28%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.37"/></g><g fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.36"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.35"/></g><g fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.3400"/></g><g fill="rgb(-55%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.3300"/></g><g fill="rgb(-6%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.3200"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.31"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.3"/></g><g fill="rgb(45%, 48%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.29"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.28"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.27"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.26"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.25"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.2300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.2200"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.2100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.18"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.1700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.0300"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.0400"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.0500"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.0600"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.0700"/></g><g fill="rgb(70%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.0800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.0900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.12"/></g><g fill="rgb(70%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.13"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.14"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.1500"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.1600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.1700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.1800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.1900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.2000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.2100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.2200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.2300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.24"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.25"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.26"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.27"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.28"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.2900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.3000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.3100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.3200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.3300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.3400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.35"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.36"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.37"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.38"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.39"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.4"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.4100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.4200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.4300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.4400"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.4500"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.4600"/></g><g fill="rgb(61%, 40%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.47"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.48"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.49"/></g><g fill="rgb(43%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4650" y="-0.5"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.49"/></g><g fill="rgb(67%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.48"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.47"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.4600"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.45"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.44"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.43"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.42"/></g><g fill="rgb(58%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.41"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.4"/></g><g fill="rgb(40%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.39"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.38"/></g><g fill="rgb(2%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.37"/></g><g fill="rgb(-53%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.36"/></g><g fill="rgb(-84%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.35"/></g><g fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.3400"/></g><g fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.3300"/></g><g fill="rgb(-32%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.3200"/></g><g fill="rgb(15%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.31"/></g><g fill="rgb(31%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.3"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.29"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.28"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.27"/></g><g fill="rgb(60%, 40%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.26"/></g><g fill="rgb(64%, 38%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.25"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.24"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.2300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.2100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.18"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.1700"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.12"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.0600"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.0300"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.0400"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.0500"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.0600"/></g><g fill="rgb(70%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.0700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.0800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.0900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.12"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.13"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.14"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.1500"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.1600"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.1700"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.1800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.1900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.2000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.2100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.2200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.2300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.24"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.25"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.26"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.27"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.28"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.2900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.3000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.3100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.3200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.3300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.3400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.35"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.36"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.37"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.38"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.39"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.4"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.4100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.4200"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.4300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.4400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.4500"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.4600"/></g><g fill="rgb(64%, 38%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.47"/></g><g fill="rgb(60%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.48"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.49"/></g><g fill="rgb(50%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.48" y="-0.5"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.49"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.48"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.47"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.4600"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.45"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.44"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.43"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.42"/></g><g fill="rgb(62%, 30%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.41"/></g><g fill="rgb(55%, 33%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.4"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.39"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.38"/></g><g fill="rgb(19%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.37"/></g><g fill="rgb(-27%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.36"/></g><g fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.35"/></g><g fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.3400"/></g><g fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.3300"/></g><g fill="rgb(-55%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.3200"/></g><g fill="rgb(-5%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.31"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.3"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.29"/></g><g fill="rgb(45%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.28"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.27"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.26"/></g><g fill="rgb(62%, 39%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.25"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.24"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.2300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.2100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.2"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.18"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.0300"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.0400"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.0500"/></g><g fill="rgb(70%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.0600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.0700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.0800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.0900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.12"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.13"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.14"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.1500"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.1600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.1700"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.1800"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.1900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.2000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.2100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.2200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.2300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.24"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.25"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.26"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.27"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.28"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.2900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.3000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.3100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.3200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.3300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.3400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.35"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.36"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.37"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.38"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.39"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.4"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.4100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.4200"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.4300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.4400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.4500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.4600"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.47"/></g><g fill="rgb(63%, 38%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.48"/></g><g fill="rgb(60%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.49"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.4950" y="-0.5"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.49"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.48"/></g><g fill="rgb(67%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.47"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.4600"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.45"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.44"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.43"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.42"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.41"/></g><g fill="rgb(59%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.4"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.39"/></g><g fill="rgb(41%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.38"/></g><g fill="rgb(28%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.37"/></g><g fill="rgb(6%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.36"/></g><g fill="rgb(-50%, 49%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.35"/></g><g fill="rgb(-83%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.3400"/></g><g fill="rgb(-90%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.3300"/></g><g fill="rgb(-73%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.3200"/></g><g fill="rgb(-34%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.31"/></g><g fill="rgb(15%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.3"/></g><g fill="rgb(30%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.29"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.28"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.27"/></g><g fill="rgb(55%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.26"/></g><g fill="rgb(60%, 40%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.25"/></g><g fill="rgb(64%, 38%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.24"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.2300"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.2100"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.2"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.18"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.1600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.0300"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.0400"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.0500"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.0600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.0700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.0800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.0900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.12"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.13"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.14"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.1500"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.1600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.1700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.1800"/></g><g fill="rgb(70%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.1900"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.2000"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.2100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.2200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.2300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.24"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.25"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.26"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.27"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.28"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.2900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.3000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.3100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.3200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.3300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.3400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.35"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.36"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.37"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.38"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.39"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.4"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.4100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.4200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.4300"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.4400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.4500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.4600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.47"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.48"/></g><g fill="rgb(63%, 38%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.49"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.51" y="-0.5"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.49"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.48"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.47"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.4600"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.45"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.44"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.43"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.42"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.41"/></g><g fill="rgb(63%, 30%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.4"/></g><g fill="rgb(56%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.39"/></g><g fill="rgb(47%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.38"/></g><g fill="rgb(36%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.37"/></g><g fill="rgb(21%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.36"/></g><g fill="rgb(-21%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.35"/></g><g fill="rgb(-68%, 51%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.3400"/></g><g fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.3300"/></g><g fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.3200"/></g><g fill="rgb(-58%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.31"/></g><g fill="rgb(-9%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.3"/></g><g fill="rgb(23%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.29"/></g><g fill="rgb(36%, 50%, 12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.28"/></g><g fill="rgb(45%, 48%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.27"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.26"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.25"/></g><g fill="rgb(62%, 39%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.24"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.2300"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.2100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.2"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.19"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.18"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.1600"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.1100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.0500"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.0300"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.0400"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.0500"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.0600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.0700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.0800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.0900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.12"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.13"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.14"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.1500"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.1600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.1700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.1800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.1900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.2000"/></g><g fill="rgb(70%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.2100"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.2200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.2300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.24"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.25"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.26"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.27"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.28"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.2900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.3000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.3100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.3200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.3300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.3400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.35"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.36"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.37"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.38"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.39"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.4"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.4100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.4200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.4300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.4400"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.4500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.4600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.47"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.48"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.49"/></g><g fill="rgb(63%, 39%, -7%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5250" y="-0.5"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.49"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.48"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.47"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.4600"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.45"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.44"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.43"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.42"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.41"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.4"/></g><g fill="rgb(60%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.39"/></g><g fill="rgb(52%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.38"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.37"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.36"/></g><g fill="rgb(12%, 46%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.35"/></g><g fill="rgb(-43%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.3400"/></g><g fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.3300"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.3200"/></g><g fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.31"/></g><g fill="rgb(-40%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.3"/></g><g fill="rgb(12%, 53%, 29%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.29"/></g><g fill="rgb(29%, 51%, 18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.28"/></g><g fill="rgb(40%, 49%, 4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.27"/></g><g fill="rgb(48%, 46%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.26"/></g><g fill="rgb(55%, 44%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.25"/></g><g fill="rgb(60%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.24"/></g><g fill="rgb(63%, 38%, -3%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.2300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.2200"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.2100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.2"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.19"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.18"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.1500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.0300"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.0400"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.0500"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.0600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.0700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.0800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.0900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.12"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.13"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.14"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.1500"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.1600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.1700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.1800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.1900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.2000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.2100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.2200"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.2300"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.24"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.25"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.26"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.27"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.28"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.2900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.3000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.3100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.3200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.3300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.3400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.35"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.36"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.37"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.38"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.39"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.4"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.4100"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.4200"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.4300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.4400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.4500"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.4600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.47"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.48"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.49"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.54" y="-0.5"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.49"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.48"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.47"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.4600"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.45"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.44"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.43"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.42"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.41"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.4"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.39"/></g><g fill="rgb(57%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.38"/></g><g fill="rgb(49%, 36%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.37"/></g><g fill="rgb(38%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.36"/></g><g fill="rgb(25%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.35"/></g><g fill="rgb(-9%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.3400"/></g><g fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.3300"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.3200"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.31"/></g><g fill="rgb(-65%, 54%, 44%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.3"/></g><g fill="rgb(-19%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.29"/></g><g fill="rgb(21%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.28"/></g><g fill="rgb(34%, 50%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.27"/></g><g fill="rgb(43%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.26"/></g><g fill="rgb(51%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.25"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.24"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.2300"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.2200"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.2100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.2"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.19"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.18"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.1500"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.1000"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.0300"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.0400"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.0500"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.0600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.0700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.0800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.0900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.12"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.13"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.14"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.1500"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.1600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.1700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.1800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.1900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.2000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.2100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.2200"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.2300"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.24"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.25"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.26"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.27"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.28"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.2900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.3000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.3100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.3200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.3300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.3400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.35"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.36"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.37"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.38"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.39"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.4"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.4100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.4200"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.4300"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.4400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.4500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.4600"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.47"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.48"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.49"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5550" y="-0.5"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.49"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.48"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.47"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.4600"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.45"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.44"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.43"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.42"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.41"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.4"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.39"/></g><g fill="rgb(62%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.38"/></g><g fill="rgb(55%, 33%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.37"/></g><g fill="rgb(45%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.36"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.35"/></g><g fill="rgb(18%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.3400"/></g><g fill="rgb(-31%, 48%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.3300"/></g><g fill="rgb(-73%, 51%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.3200"/></g><g fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.31"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.3"/></g><g fill="rgb(-50%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.29"/></g><g fill="rgb(4%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.28"/></g><g fill="rgb(26%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.27"/></g><g fill="rgb(38%, 50%, 8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.26"/></g><g fill="rgb(47%, 47%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.25"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.24"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.2300"/></g><g fill="rgb(63%, 38%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.2200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.2100"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.2"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.19"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.18"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.1400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.0400"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.0300"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.0400"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.0500"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.0600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.0700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.0800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.0900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.12"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.13"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.14"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.1500"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.1600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.1700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.1800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.1900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.2000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.2100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.2200"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.2300"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.24"/></g><g fill="rgb(70%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.25"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.26"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.27"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.28"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.2900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.3000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.3100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.3200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.3300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.3400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.35"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.36"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.37"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.38"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.39"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.4"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.4100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.4200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.4300"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.4400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.4500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.4600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.47"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.48"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.49"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.5700" y="-0.5"/></g><g fill="rgb(71%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.49"/></g><g fill="rgb(71%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.48"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.47"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.4600"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.45"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.44"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.43"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.42"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.41"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.4"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.39"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.38"/></g><g fill="rgb(60%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.37"/></g><g fill="rgb(52%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.36"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.35"/></g><g fill="rgb(29%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.3400"/></g><g fill="rgb(8%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.3300"/></g><g fill="rgb(-48%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.3200"/></g><g fill="rgb(-82%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.31"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.3"/></g><g fill="rgb(-73%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.29"/></g><g fill="rgb(-33%, 54%, 37%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.28"/></g><g fill="rgb(16%, 53%, 27%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.27"/></g><g fill="rgb(31%, 51%, 16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.26"/></g><g fill="rgb(41%, 49%, 1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.25"/></g><g fill="rgb(49%, 46%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.24"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.2300"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.2200"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.2100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.2"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.19"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.18"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.1700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.1400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.13"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.0900"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.0400"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.0500"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.0600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.0700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.0800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.0900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.12"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.13"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.14"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.1500"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.1600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.1700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.1800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.1900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.2000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.2100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.2200"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.2300"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.24"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.25"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.26"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.27"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.28"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.2900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.3000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.3100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.3200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.3300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.3400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.35"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.36"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.37"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.38"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.39"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.4"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.4100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.4200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.4300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.4400"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.4500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.4600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.47"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.48"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.49"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.585" y="-0.5"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.49"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.48"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.47"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.4600"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.45"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.44"/></g><g fill="rgb(67%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.43"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.42"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.41"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.4"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.39"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.38"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.37"/></g><g fill="rgb(57%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.36"/></g><g fill="rgb(49%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.35"/></g><g fill="rgb(38%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.3400"/></g><g fill="rgb(24%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.3300"/></g><g fill="rgb(-11%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.3200"/></g><g fill="rgb(-62%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.31"/></g><g fill="rgb(-88%, 52%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.3"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.29"/></g><g fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.28"/></g><g fill="rgb(-14%, 54%, 34%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.27"/></g><g fill="rgb(22%, 52%, 24%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.26"/></g><g fill="rgb(35%, 50%, 12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.25"/></g><g fill="rgb(44%, 48%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.24"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.2300"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.2200"/></g><g fill="rgb(62%, 39%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.2100"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.2"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.19"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.18"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.1700"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.1600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.1400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.13"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.0800"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.0300"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.0400"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.0500"/></g><g fill="rgb(70%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.0600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.0700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.0800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.0900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.12"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.13"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.14"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.1500"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.1600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.1700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.1800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.1900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.2000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.2100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.2200"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.2300"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.24"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.25"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.26"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.27"/></g><g fill="rgb(70%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.28"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.2900"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.3000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.3100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.3200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.3300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.3400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.35"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.36"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.37"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.38"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.39"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.4"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.4100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.4200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.4300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.4400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.4500"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.4600"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.47"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.48"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.49"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6000" y="-0.5"/></g><g fill="rgb(70%, 19%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.49"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.48"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.47"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.4600"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.45"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.44"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.43"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.42"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.41"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.4"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.39"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.38"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.37"/></g><g fill="rgb(63%, 30%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.36"/></g><g fill="rgb(55%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.35"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.3400"/></g><g fill="rgb(34%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.3300"/></g><g fill="rgb(19%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.3200"/></g><g fill="rgb(-29%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.31"/></g><g fill="rgb(-73%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.3"/></g><g fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.29"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.28"/></g><g fill="rgb(-50%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.27"/></g><g fill="rgb(4%, 53%, 31%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.26"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.25"/></g><g fill="rgb(38%, 49%, 8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.24"/></g><g fill="rgb(47%, 47%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.2300"/></g><g fill="rgb(54%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.2200"/></g><g fill="rgb(59%, 41%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.2100"/></g><g fill="rgb(63%, 38%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.2"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.19"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.18"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.1700"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.1600"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.1400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.12"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.0400"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.0500"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.0600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.0700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.0800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.0900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.12"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.13"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.14"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.1500"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.1600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.1700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.1800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.1900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.2000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.2100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.2200"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.2300"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.24"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.25"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.26"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.27"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.28"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.2900"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.3000"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.3100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.3200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.3300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.3400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.35"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.36"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.37"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.38"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.39"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.4"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.4100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.4200"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.4300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.4400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.4500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.4600"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.47"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.48"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.49"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6150" y="-0.5"/></g><g fill="rgb(67%, 22%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.49"/></g><g fill="rgb(71%, 18%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.48"/></g><g fill="rgb(72%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.47"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.4600"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.45"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.44"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.43"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.42"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.41"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.4"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.39"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.38"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.37"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.36"/></g><g fill="rgb(61%, 31%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.35"/></g><g fill="rgb(53%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.3400"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.3300"/></g><g fill="rgb(31%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.3200"/></g><g fill="rgb(12%, 46%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.31"/></g><g fill="rgb(-44%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.3"/></g><g fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.29"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.28"/></g><g fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.27"/></g><g fill="rgb(-36%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.26"/></g><g fill="rgb(14%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.25"/></g><g fill="rgb(31%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.24"/></g><g fill="rgb(41%, 49%, 1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.2300"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.2200"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.2100"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.2"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.19"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.18"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.1700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.1600"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.1500"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.1400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.12"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.1100"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.0700"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.0200"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.0500"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.0600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.0700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.0800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.0900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.12"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.13"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.14"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.1500"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.1600"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.1700"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.1800"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.1900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.2000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.2100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.2200"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.2300"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.24"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.25"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.26"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.27"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.28"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.2900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.3000"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.3100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.3200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.3300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.3400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.35"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.36"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.37"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.38"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.39"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.4"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.4100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.4200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.4300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.4400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.4500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.4600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.47"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.48"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.49"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6300" y="-0.5"/></g><g fill="rgb(63%, 25%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.49"/></g><g fill="rgb(68%, 21%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.48"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.47"/></g><g fill="rgb(71%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.4600"/></g><g fill="rgb(71%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.45"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.44"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.43"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.42"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.41"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.4"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.39"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.38"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.37"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.36"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.35"/></g><g fill="rgb(59%, 31%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.3400"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.3300"/></g><g fill="rgb(40%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.3200"/></g><g fill="rgb(27%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.31"/></g><g fill="rgb(-1%, 47%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.3"/></g><g fill="rgb(-56%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.29"/></g><g fill="rgb(-86%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.28"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.27"/></g><g fill="rgb(-67%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.26"/></g><g fill="rgb(-22%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.25"/></g><g fill="rgb(20%, 52%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.24"/></g><g fill="rgb(34%, 50%, 14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.2300"/></g><g fill="rgb(44%, 48%, -4%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.2200"/></g><g fill="rgb(51%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.2100"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.2"/></g><g fill="rgb(62%, 39%, -10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.19"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.18"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.1700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.1600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.1500"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.1400"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.1100"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.0500"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.0600"/></g><g fill="rgb(70%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.0700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.0800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.0900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.12"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.13"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.14"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.1500"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.1600"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.1700"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.1800"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.1900"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.2000"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.2100"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.2200"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.2300"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.24"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.25"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.26"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.27"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.28"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.2900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.3000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.3100"/></g><g fill="rgb(70%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.3200"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.3300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.3400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.35"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.36"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.37"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.38"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.39"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.4"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.4100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.4200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.4300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.4400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.4500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.4600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.47"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.48"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.49"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.645" y="-0.5"/></g><g fill="rgb(59%, 28%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.49"/></g><g fill="rgb(64%, 24%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.48"/></g><g fill="rgb(69%, 20%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.47"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.4600"/></g><g fill="rgb(71%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.45"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.44"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.43"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.42"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.41"/></g><g fill="rgb(67%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.4"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.39"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.38"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.37"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.36"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.35"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.3400"/></g><g fill="rgb(57%, 32%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.3300"/></g><g fill="rgb(48%, 36%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.3200"/></g><g fill="rgb(37%, 40%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.31"/></g><g fill="rgb(23%, 44%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.3"/></g><g fill="rgb(-16%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.29"/></g><g fill="rgb(-65%, 50%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.28"/></g><g fill="rgb(-89%, 53%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.27"/></g><g fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.26"/></g><g fill="rgb(-58%, 54%, 42%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.25"/></g><g fill="rgb(-7%, 53%, 32%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.24"/></g><g fill="rgb(24%, 52%, 22%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.2300"/></g><g fill="rgb(37%, 50%, 10%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.2200"/></g><g fill="rgb(46%, 47%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.2100"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.2"/></g><g fill="rgb(58%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.19"/></g><g fill="rgb(63%, 38%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.18"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.1700"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.1600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.1500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.1400"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.1000"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.0600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.0600"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.0700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.0800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.0900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.12"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.13"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.14"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.1500"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.1600"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.1700"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.1800"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.1900"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.2000"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.2100"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.2200"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.2300"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.24"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.25"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.26"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.27"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.28"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.2900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.3000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.3100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.3200"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.3300"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.3400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.35"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.36"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.37"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.38"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.39"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.4"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.4100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.4200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.4300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.4400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.4500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.4600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.47"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.48"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.49"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6600" y="-0.5"/></g><g fill="rgb(55%, 31%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.49"/></g><g fill="rgb(60%, 27%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.48"/></g><g fill="rgb(65%, 24%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.47"/></g><g fill="rgb(70%, 20%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.4600"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.45"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.44"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.43"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.42"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.41"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.4"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.39"/></g><g fill="rgb(67%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.38"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.37"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.36"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.35"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.3400"/></g><g fill="rgb(63%, 30%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.3300"/></g><g fill="rgb(55%, 33%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.3200"/></g><g fill="rgb(46%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.31"/></g><g fill="rgb(35%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.3"/></g><g fill="rgb(19%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.29"/></g><g fill="rgb(-28%, 48%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.28"/></g><g fill="rgb(-72%, 51%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.27"/></g><g fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.26"/></g><g fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.25"/></g><g fill="rgb(-49%, 54%, 40%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.24"/></g><g fill="rgb(6%, 53%, 30%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.2300"/></g><g fill="rgb(27%, 52%, 20%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.2200"/></g><g fill="rgb(39%, 49%, 6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.2100"/></g><g fill="rgb(48%, 47%, -12%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.2"/></g><g fill="rgb(54%, 44%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.19"/></g><g fill="rgb(60%, 41%, -15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.18"/></g><g fill="rgb(64%, 38%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.1700"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.1600"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.1500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.1400"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.13"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.0900"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.0500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="0"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.0600"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.0700"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.0800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.0900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.12"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.13"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.14"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.1500"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.1600"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.1700"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.1800"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.1900"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.2000"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.2100"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.2200"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.2300"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.24"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.25"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.26"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.27"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.28"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.2900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.3000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.3100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.3200"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.3300"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.3400"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.35"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.36"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.37"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.38"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.39"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.4"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.4100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.4200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.4300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.4400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.4500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.4600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.47"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.48"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.49"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.6750" y="-0.5"/></g><g fill="rgb(51%, 33%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.49"/></g><g fill="rgb(56%, 30%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.48"/></g><g fill="rgb(61%, 27%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.47"/></g><g fill="rgb(66%, 23%, 68%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.4600"/></g><g fill="rgb(70%, 19%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.45"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.44"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.43"/></g><g fill="rgb(70%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.42"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.41"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.4"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.39"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.38"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.37"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.36"/></g><g fill="rgb(65%, 27%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.35"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.3400"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.3300"/></g><g fill="rgb(62%, 30%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.3200"/></g><g fill="rgb(54%, 34%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.31"/></g><g fill="rgb(44%, 37%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.3"/></g><g fill="rgb(32%, 41%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.29"/></g><g fill="rgb(15%, 45%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.28"/></g><g fill="rgb(-39%, 49%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.27"/></g><g fill="rgb(-78%, 51%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.26"/></g><g fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.25"/></g><g fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.24"/></g><g fill="rgb(-39%, 54%, 38%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.2300"/></g><g fill="rgb(13%, 53%, 28%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.2200"/></g><g fill="rgb(30%, 51%, 17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.2100"/></g><g fill="rgb(41%, 49%, 2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.2"/></g><g fill="rgb(49%, 46%, -14%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.19"/></g><g fill="rgb(56%, 43%, -19%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.18"/></g><g fill="rgb(61%, 40%, -13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.1700"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.1600"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.1500"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.1400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.13"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.12"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.0900"/></g><g fill="rgb(66%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.0400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="0"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.0100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.0700"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.0800"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.0900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.12"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.13"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.14"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.1500"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.1600"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.1700"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.1800"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.1900"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.2000"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.2100"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.2200"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.2300"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.24"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.25"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.26"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.27"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.28"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.2900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.3000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.3100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.3200"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.3300"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.3400"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.35"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.36"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.37"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.38"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.39"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.4"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.4100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.4200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.4300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.4400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.4500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.4600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.47"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.48"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.49"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.69" y="-0.5"/></g><g fill="rgb(46%, 36%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.49"/></g><g fill="rgb(52%, 33%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.48"/></g><g fill="rgb(57%, 30%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.47"/></g><g fill="rgb(62%, 26%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.4600"/></g><g fill="rgb(66%, 23%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.45"/></g><g fill="rgb(71%, 18%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.44"/></g><g fill="rgb(72%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.43"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.42"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.41"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.4"/></g><g fill="rgb(69%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.39"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.38"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.37"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.36"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.35"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.3400"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.3300"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.3200"/></g><g fill="rgb(61%, 31%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.31"/></g><g fill="rgb(52%, 34%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.3"/></g><g fill="rgb(43%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.29"/></g><g fill="rgb(30%, 42%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.28"/></g><g fill="rgb(10%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.27"/></g><g fill="rgb(-47%, 49%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.26"/></g><g fill="rgb(-82%, 52%, 64%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.25"/></g><g fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.24"/></g><g fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.2300"/></g><g fill="rgb(-30%, 54%, 36%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.2200"/></g><g fill="rgb(17%, 53%, 26%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.2100"/></g><g fill="rgb(32%, 51%, 15%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.2"/></g><g fill="rgb(43%, 48%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.19"/></g><g fill="rgb(50%, 45%, -16%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.18"/></g><g fill="rgb(57%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.1700"/></g><g fill="rgb(61%, 39%, -11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.1600"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.1500"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.1400"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.13"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.12"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.1100"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.0800"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="0"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.0700"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.0800"/></g><g fill="rgb(70%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.0900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.12"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.13"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.14"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.1500"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.1600"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.1700"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.1800"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.1900"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.2000"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.2100"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.2200"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.2300"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.24"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.25"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.26"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.27"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.28"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.2900"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.3000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.3100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.3200"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.3300"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.3400"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.35"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.36"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.37"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.38"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.39"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.4"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.4100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.4200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.4300"/></g><g fill="rgb(69%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.4400"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.4500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.4600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.47"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.48"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.49"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7050" y="-0.5"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.49"/></g><g fill="rgb(47%, 36%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.48"/></g><g fill="rgb(52%, 33%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.47"/></g><g fill="rgb(57%, 29%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.4600"/></g><g fill="rgb(62%, 26%, 71%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.45"/></g><g fill="rgb(67%, 22%, 67%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.44"/></g><g fill="rgb(71%, 18%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.43"/></g><g fill="rgb(72%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.42"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.41"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.4"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.39"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.38"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.37"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.36"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.35"/></g><g fill="rgb(66%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.3400"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.3300"/></g><g fill="rgb(64%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.3200"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.31"/></g><g fill="rgb(60%, 31%, 65%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.3"/></g><g fill="rgb(51%, 35%, 72%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.29"/></g><g fill="rgb(41%, 39%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.28"/></g><g fill="rgb(28%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.27"/></g><g fill="rgb(3%, 46%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.26"/></g><g fill="rgb(-54%, 50%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.25"/></g><g fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.24"/></g><g fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.2300"/></g><g fill="rgb(-67%, 54%, 45%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.2200"/></g><g fill="rgb(-21%, 54%, 35%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.2100"/></g><g fill="rgb(20%, 52%, 25%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.2"/></g><g fill="rgb(34%, 50%, 13%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.19"/></g><g fill="rgb(44%, 48%, -5%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.18"/></g><g fill="rgb(52%, 45%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.1700"/></g><g fill="rgb(58%, 42%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.1600"/></g><g fill="rgb(62%, 39%, -9%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.1500"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.1400"/></g><g fill="rgb(64%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.13"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.12"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.1100"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.1000"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.0700"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.0300"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="0"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.0200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.0700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.0800"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.0900"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.12"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.13"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.14"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.1500"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.1600"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.1700"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.1800"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.1900"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.2000"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.2100"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.2200"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.2300"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.24"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.25"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.26"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.27"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.28"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.2900"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.3000"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.3100"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.3200"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.3300"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.3400"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.35"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.36"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.37"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.38"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.39"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.4"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.4100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.4200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.4300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.4400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.4500"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.4600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.47"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.48"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.49"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.72" y="-0.5"/></g><g fill="rgb(37%, 41%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.49"/></g><g fill="rgb(42%, 38%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.48"/></g><g fill="rgb(47%, 35%, 76%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.47"/></g><g fill="rgb(53%, 32%, 75%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.4600"/></g><g fill="rgb(58%, 29%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.45"/></g><g fill="rgb(63%, 26%, 70%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.44"/></g><g fill="rgb(67%, 22%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.43"/></g><g fill="rgb(72%, 17%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.42"/></g><g fill="rgb(71%, 18%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.41"/></g><g fill="rgb(71%, 19%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.4"/></g><g fill="rgb(70%, 21%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.39"/></g><g fill="rgb(69%, 22%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.38"/></g><g fill="rgb(68%, 23%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.37"/></g><g fill="rgb(68%, 24%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.36"/></g><g fill="rgb(67%, 25%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.35"/></g><g fill="rgb(66%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.3400"/></g><g fill="rgb(65%, 27%, 61%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.3300"/></g><g fill="rgb(65%, 28%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.3200"/></g><g fill="rgb(64%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.31"/></g><g fill="rgb(63%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.3"/></g><g fill="rgb(59%, 32%, 66%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.29"/></g><g fill="rgb(50%, 35%, 73%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.28"/></g><g fill="rgb(40%, 39%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.27"/></g><g fill="rgb(26%, 43%, 77%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.26"/></g><g fill="rgb(-5%, 47%, 74%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.25"/></g><g fill="rgb(-59%, 50%, 69%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.24"/></g><g fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.2300"/></g><g fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.2200"/></g><g fill="rgb(-63%, 54%, 43%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.2100"/></g><g fill="rgb(-14%, 54%, 33%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.2"/></g><g fill="rgb(23%, 52%, 23%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.19"/></g><g fill="rgb(36%, 50%, 11%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.18"/></g><g fill="rgb(45%, 47%, -8%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.1700"/></g><g fill="rgb(53%, 44%, -18%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.1600"/></g><g fill="rgb(58%, 41%, -17%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.1500"/></g><g fill="rgb(63%, 39%, -6%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.1400"/></g><g fill="rgb(64%, 37%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.13"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.12"/></g><g fill="rgb(65%, 37%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.1100"/></g><g fill="rgb(65%, 37%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.1000"/></g><g fill="rgb(65%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.0900"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.0800"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.0700"/></g><g fill="rgb(66%, 36%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.0600"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.0500"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.0400"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.0300"/></g><g fill="rgb(67%, 35%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="0"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.0100"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.0200"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.0300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.0400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.0500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.0600"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.0700"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.0800"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.0900"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.1000"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.1100"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.12"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.13"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.14"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.1500"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.1600"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.1700"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.1800"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.1900"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.2000"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.2100"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.2200"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.2300"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.24"/></g><g fill="rgb(70%, 32%, 0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.25"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.26"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.27"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.28"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.2900"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.3000"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.3100"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.3200"/></g><g fill="rgb(70%, 32%, -0%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.3300"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.3400"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.35"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.36"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.37"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.38"/></g><g fill="rgb(70%, 32%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.39"/></g><g fill="rgb(69%, 33%, -1%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.4"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.4100"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.4200"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.4300"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.4400"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.4500"/></g><g fill="rgb(69%, 33%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.4600"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.47"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.48"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.49"/></g><g fill="rgb(68%, 34%, -2%)" fill-opacity="1.0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0100" width="0.0150" x="0.7350" y="-0.5"/></g></g></g><g class="hud"/></svg>
+}svg { shape-rendering: crispEdges; }</style><g class="chart"><g class="surface"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(0%, 52%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(2%, 51%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 51%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(8%, 50%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 50%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 50%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 49%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 49%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 48%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 47%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 47%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 46%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 45%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 44%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 42%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 36%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 34%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 32%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 29%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 26%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 24%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 20%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(1%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-28%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-50%, 49%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-66%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-56%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-46%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-36%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-26%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-16%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-8%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(0%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(6%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(6%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(0%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-8%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-16%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-26%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-36%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-46%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-56%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-66%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-50%, 49%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-28%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(1%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.75" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(3%, 51%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(6%, 51%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(8%, 50%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 50%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 49%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 49%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 48%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 48%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 47%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 47%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 46%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 45%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 43%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 42%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 33%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 31%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 28%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 26%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 23%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 19%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 30%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-18%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-43%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-63%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-53%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-42%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-30%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-18%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-6%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(4%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 53%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 52%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 52%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 52%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 53%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(4%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-6%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-17%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-41%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-53%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 51%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-64%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-44%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-19%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.735" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(6%, 51%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(8%, 50%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 50%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 49%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 49%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 48%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 48%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 47%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 47%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 46%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 45%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 43%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 41%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 37%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 35%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 33%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 30%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 28%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 25%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 22%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 19%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 31%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-6%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-34%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-56%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-51%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-38%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-25%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-11%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(2%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 21%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 21%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 21%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(3%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-10%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-23%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-37%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-50%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-59%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-37%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-9%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.72" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 50%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 50%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 49%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 49%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 48%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 48%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 47%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 47%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 46%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 44%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 43%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 41%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 37%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 35%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 32%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 30%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 27%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 24%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 21%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 33%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 36%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(8%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-22%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-48%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 53%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-51%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-37%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-22%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-7%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(7%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 52%, 21%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 52%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 52%, 21%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 53%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-3%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-18%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-33%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-48%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-61%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-53%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-29%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(2%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.705" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 50%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 49%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 49%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 48%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 48%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 47%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 47%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 46%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 44%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 43%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 41%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 34%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 32%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 29%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 27%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 24%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 21%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-7%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-37%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-59%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-76%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-66%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-52%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-37%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-21%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-4%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 51%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 51%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(3%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-14%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-31%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-46%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-61%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 53%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-47%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-20%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6900" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 49%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 49%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 48%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 48%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 47%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 46%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 45%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 44%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 42%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 36%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 34%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 31%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 29%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 26%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 23%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 20%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-22%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-49%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-69%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-55%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-39%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-22%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-3%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 52%, 21%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 52%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(7%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-11%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-46%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-61%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-78%, 51%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-39%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-10%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.675" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 49%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 48%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 48%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 47%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 46%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 45%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 44%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 42%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 36%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 34%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 31%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 29%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 26%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 23%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 19%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-4%, 47%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-35%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-59%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-76%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-59%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-43%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-24%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-5%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 52%, 21%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-8%, 53%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-27%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-45%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-61%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-56%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-31%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(2%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 44%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.66" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 48%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 47%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 47%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 46%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 45%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 44%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 42%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 33%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 31%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 28%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 25%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 22%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 19%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 46%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-17%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-46%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-68%, 51%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-48%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-9%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 51%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 50%, 8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 50%, 8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 52%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-6%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-27%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-46%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-76%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-70%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-49%, 49%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-21%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.645" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 47%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 47%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 46%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 45%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 44%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 42%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 33%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 31%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 28%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 25%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 22%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 30%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-29%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-56%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-70%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-55%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-36%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-15%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(7%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 48%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 52%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-5%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-27%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-47%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-65%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-42%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-11%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.63" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 47%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 46%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 45%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 43%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 42%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 35%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 33%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 30%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 28%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 25%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 22%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-7%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-39%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-64%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-44%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-23%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(0%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 49%, 0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 48%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 52%, 21%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-4%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-27%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-48%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-65%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-79%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 52%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 51%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-60%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-34%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(0%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 44%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.615" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 46%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 45%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 43%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 42%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 40%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 35%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 33%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 30%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 28%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 25%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 22%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-18%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-48%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-70%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-70%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-53%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-33%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-9%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 52%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 52%, 21%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 47%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 50%, 8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-4%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-28%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-49%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-53%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-25%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.6000" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 45%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 43%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 42%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 40%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 35%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 33%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 30%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 28%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 25%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 21%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 30%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-27%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-55%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-63%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-44%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-21%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(4%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 51%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 48%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 47%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-5%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-51%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-69%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-46%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-15%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 36%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.585" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 43%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 42%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 40%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 35%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 33%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 30%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 28%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 25%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 21%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 30%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(1%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-35%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-85%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-56%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-34%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-9%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 48%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 52%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-6%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-31%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-53%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-71%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-64%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-39%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-4%, 47%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5700" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 42%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 35%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 33%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 30%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 28%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 25%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 21%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-7%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-41%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-68%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-48%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-24%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(3%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 49%, 8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 49%, 0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-7%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-33%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-56%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-85%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-78%, 51%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-59%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-30%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(7%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5550" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 35%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 33%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 30%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 28%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 25%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 22%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 38%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-14%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-47%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-40%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-14%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 51%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-9%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-35%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-58%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-53%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-21%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 36%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.54" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 33%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 31%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 28%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 25%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 22%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 30%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-19%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-51%, 49%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-56%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-33%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-5%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 47%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 48%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 49%, 8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-11%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-38%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-60%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-70%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-46%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-12%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.5250" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 36%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 33%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 31%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 28%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 25%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 22%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 30%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 46%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-23%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-55%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 53%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-85%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-71%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-51%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-25%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(4%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 52%, 21%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-13%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-40%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-63%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-79%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-66%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-39%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-2%, 47%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.51" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 34%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 31%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 28%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 26%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 22%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 19%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 30%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-27%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-58%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-78%, 51%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-68%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-46%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-18%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 49%, 7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-15%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-43%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-65%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-31%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(8%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4950" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 32%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 29%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 26%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 23%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 19%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 30%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-29%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-60%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-41%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-12%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-17%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-45%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 51%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-56%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-23%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 46%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.48" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 29%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 26%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 23%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 20%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 30%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-30%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-37%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-6%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-19%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-47%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-70%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 52%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-50%, 49%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-15%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 30%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4650" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 27%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 24%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 20%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-30%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-59%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-33%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-2%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 52%, 21%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 49%, 8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 47%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-21%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-50%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-44%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-7%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 44%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4500" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 24%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 21%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-30%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-58%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-31%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(2%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 53%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-23%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-52%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-38%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(2%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 31%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4350" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 22%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 30%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 38%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 46%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-28%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-60%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-57%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 52%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 48%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(8%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-25%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-54%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-63%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-32%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(8%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.4200" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 19%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 30%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-25%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-58%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-57%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-28%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(6%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(7%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-27%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-56%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-60%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-26%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 46%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 30%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.405" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-20%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-56%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-79%, 51%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-57%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(6%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(6%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-57%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-79%, 51%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-56%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-21%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.39" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-15%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-52%, 49%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-79%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-59%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-30%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(6%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-30%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-59%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-79%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-52%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-15%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.375" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 30%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-7%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-47%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 53%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-61%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-32%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(3%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 49%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-31%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-60%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-48%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-9%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 44%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 30%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.36" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 30%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(2%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-41%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-70%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-36%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-0%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 52%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-32%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-61%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 52%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-45%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-4%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.345" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-33%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-65%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-85%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-40%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-5%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-32%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-42%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(0%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 30%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3300" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-23%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-59%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-71%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-45%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-11%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-32%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-70%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-39%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(4%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 30%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3150" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 36%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 44%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-11%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-51%, 49%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 51%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-76%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-51%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-18%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 52%, 21%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(6%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-32%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-37%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(7%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.3000" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(3%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-41%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 52%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-58%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-26%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 49%, 8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(7%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-32%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-68%, 51%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-35%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2850" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 37%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-29%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-64%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-65%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-35%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(4%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 50%, 8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(8%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-30%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-34%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2700" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 44%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-13%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-53%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-79%, 52%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-44%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-7%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 47%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-61%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-33%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2550" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-40%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-72%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 52%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-54%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-19%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 51%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-27%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-60%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-33%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 46%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.24" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-24%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-32%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(8%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 21%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-24%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-58%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-33%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 46%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2250" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-4%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-48%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-76%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-45%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-6%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 52%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 49%, 0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-21%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-56%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-68%, 51%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-34%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.2100" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 30%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-30%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-66%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-57%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-22%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 49%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 52%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-17%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-54%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-36%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1950" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-8%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-51%, 49%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-79%, 51%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-69%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-38%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(3%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-13%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-50%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 52%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-38%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1800" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 46%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-32%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-79%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-53%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-16%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 49%, 8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 52%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-7%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-47%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-41%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(7%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1650" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-8%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-51%, 49%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-79%, 52%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-35%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(7%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 51%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-1%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-42%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-44%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(3%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1500" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-30%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-66%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-79%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-53%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-14%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 51%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(6%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-37%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-69%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 51%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-48%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-2%, 47%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.135" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-2%, 47%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-48%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 51%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-68%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-36%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(7%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 47%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 21%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-31%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-65%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-85%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-52%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-8%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 38%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.12" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-22%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-55%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-17%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-23%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-60%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-57%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-15%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 44%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.1050" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-40%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-40%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(3%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 51%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 50%, 8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-15%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-54%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-22%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0900" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-9%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-54%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-61%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-24%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 52%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-6%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-47%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-76%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 51%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-29%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 30%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0750" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-26%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-65%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-49%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-7%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 47%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-39%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-71%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-72%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-37%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0600" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-40%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-69%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-35%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 21%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-30%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-65%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-45%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(3%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 33%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 30%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0450" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-6%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-52%, 49%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-60%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-21%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 50%, 8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 48%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 49%, 8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-19%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-58%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-54%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-8%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0300" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-20%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-50%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-7%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-7%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-49%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-20%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="-0.0150" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-31%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 53%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-39%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(6%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, 0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(7%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-39%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 53%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-32%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 30%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-41%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-65%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-27%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-76%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-43%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(7%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0150" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 37%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-0%, 47%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-49%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-59%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-18%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 52%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-12%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-54%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-54%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-8%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 31%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0300" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 31%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-10%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-56%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-52%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-8%, 53%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(4%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-42%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-64%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-23%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0450" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-18%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-76%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-45%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(1%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-28%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-66%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-38%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 46%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0600" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-24%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-65%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-39%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(8%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 52%, 21%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 52%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-11%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-54%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-81%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-51%, 49%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-3%, 47%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0750" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-29%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-70%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-34%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 21%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(7%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-40%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-64%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-21%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.0900" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-33%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 49%, 8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-23%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-63%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-39%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 46%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1050" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-35%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-25%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-3%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-49%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-79%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-54%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-6%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1200" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-37%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-63%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-22%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 50%, 8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-31%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-69%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 53%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-68%, 51%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-27%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.135" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 46%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-37%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-21%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 49%, 0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-10%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-55%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-79%, 51%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-46%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(6%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1500" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-36%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-20%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-37%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-63%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-18%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1650" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-34%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-21%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 52%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-15%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-58%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-76%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-40%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(11%, 46%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1800" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-31%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-64%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-23%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-39%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-59%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-12%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.1950" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-27%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-68%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-66%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-26%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 52%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-16%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-59%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-85%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-37%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2100" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 30%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 44%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-21%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-65%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 52%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-69%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-30%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-39%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-58%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-10%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2250" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-13%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-35%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 49%, 8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 51%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-13%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-58%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-37%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2400" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 30%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-4%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-55%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-76%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-41%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 49%, 7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-36%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-59%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-12%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2550" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(6%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-47%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-48%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(2%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-7%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-54%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-40%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 46%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.27" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-38%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-76%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-55%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-8%, 53%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-29%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-69%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-63%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-17%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.2850" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 31%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-27%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-63%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-19%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 53%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 49%, 0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 48%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 21%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(3%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-47%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-79%, 54%, 49%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-46%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3000" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 30%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-13%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-70%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-31%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 47%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(33%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 52%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-18%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3150" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(4%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-50%, 49%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-42%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 50%, 8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-37%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3300" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-36%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-54%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-6%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-3%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-52%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 58%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.345" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-20%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-65%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 53%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-65%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-22%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 53%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 53%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-21%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-65%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3600" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(1%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-52%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-37%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-37%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.375" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-36%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-52%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-3%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 48%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-0%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-51%, 54%, 41%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.3900" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 30%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-15%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-63%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-66%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-23%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 48%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, 0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-16%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.405" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(9%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-46%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-78%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-42%, 54%, 39%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 52%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 49%, 7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4200" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 44%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-24%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-69%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-59%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-12%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 52%, 19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4350" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(4%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-51%, 49%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-74%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-35%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4500" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 33%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-28%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-55%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-6%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 48%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4650" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(2%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-53%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 54%, 55%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-32%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.48" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-27%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-71%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-84%, 54%, 51%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-55%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-5%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.4950" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(6%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-50%, 49%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-83%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-90%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-34%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 40%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.51" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 30%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-21%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-68%, 51%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-58%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-9%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 48%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 39%, -7%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5250" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 46%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-43%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-40%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 53%, 29%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 51%, 18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 49%, 4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 46%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 44%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -3%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.54" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 36%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(25%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-9%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-61%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-65%, 54%, 44%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-19%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(21%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5550" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(18%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-31%, 48%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 51%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-50%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(4%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 50%, 8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.5700" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(29%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(8%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-48%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-33%, 54%, 37%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(16%, 53%, 27%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.585" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-11%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 52%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-62%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-14%, 54%, 34%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(22%, 52%, 24%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 50%, 12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6000" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 19%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 30%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-29%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-73%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-50%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(4%, 53%, 31%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(38%, 49%, 8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 47%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 41%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6150" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 22%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 31%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(12%, 46%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-44%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-80%, 52%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-75%, 54%, 47%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-36%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(14%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(31%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6300" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 25%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 21%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 31%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-1%, 47%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-56%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-22%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 52%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -4%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.645" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 28%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 24%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 20%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 32%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 36%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 40%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 44%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-16%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-65%, 50%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 53%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-86%, 54%, 52%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-58%, 54%, 42%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-7%, 53%, 32%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(24%, 52%, 22%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 50%, 10%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 47%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 38%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6600" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 31%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 27%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 24%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 30%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(55%, 33%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(35%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(19%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-28%, 48%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-72%, 51%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 59%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 54%, 50%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-49%, 54%, 40%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(6%, 53%, 30%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(27%, 52%, 20%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(39%, 49%, 6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(48%, 47%, -12%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 44%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 41%, -15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 38%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.6750" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 33%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 30%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 27%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 23%, 68%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 19%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 30%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(54%, 34%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 37%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 41%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(15%, 45%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-39%, 49%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-78%, 51%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 57%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-77%, 54%, 48%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-39%, 54%, 38%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(13%, 53%, 28%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 51%, 17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 49%, 2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(49%, 46%, -14%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(56%, 43%, -19%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 40%, -13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.69" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(46%, 36%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 33%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 30%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 26%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 23%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 31%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 34%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(30%, 42%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(10%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-47%, 49%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-82%, 52%, 64%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-91%, 53%, 56%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-72%, 54%, 46%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-30%, 54%, 36%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(17%, 53%, 26%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(32%, 51%, 15%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(43%, 48%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 45%, -16%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(61%, 39%, -11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7050" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 36%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 33%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(57%, 29%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 26%, 71%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 22%, 67%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(60%, 31%, 65%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(51%, 35%, 72%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(41%, 39%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(28%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(3%, 46%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-54%, 50%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-85%, 52%, 63%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-89%, 54%, 54%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-67%, 54%, 45%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-21%, 54%, 35%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(20%, 52%, 25%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(34%, 50%, 13%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(44%, 48%, -5%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(52%, 45%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 42%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(62%, 39%, -9%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.72" y="-0.5"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(37%, 41%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(42%, 38%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(47%, 35%, 76%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 32%, 75%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 29%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.45"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 26%, 70%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.44"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 22%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.43"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(72%, 17%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.42"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 18%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.41"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(71%, 19%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 21%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 22%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 23%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 24%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 25%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 27%, 61%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 28%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.31"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.3"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(59%, 32%, 66%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.29"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(50%, 35%, 73%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(40%, 39%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(26%, 43%, 77%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-5%, 47%, 74%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-59%, 50%, 69%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-87%, 52%, 62%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-88%, 54%, 53%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-63%, 54%, 43%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(-14%, 54%, 33%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.2"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(23%, 52%, 23%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.19"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(36%, 50%, 11%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.18"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(45%, 47%, -8%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(53%, 44%, -18%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(58%, 41%, -17%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(63%, 39%, -6%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.1400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(64%, 37%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 37%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(65%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(66%, 36%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(67%, 35%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="0"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.0100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.0200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.0400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.0500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.0600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.0700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.0800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.1000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.1100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.12"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.13"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.14"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.1500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.1700"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.1800"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.1900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.2000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.2100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.2200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.24"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, 0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.25"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.26"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.27"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.28"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.2900"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.3000"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.3100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.3200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -0%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.3300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.3400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.35"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.36"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.37"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.38"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(70%, 32%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.39"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -1%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.4"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.4100"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.4200"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.4300"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.4400"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.4500"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(69%, 33%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.4600"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.47"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.48"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.49"/></g><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(68%, 34%, -2%)" fill-opacity="1.0"><rect width="0.0150" height="0.0100" x="0.7350" y="-0.5"/></g></g></g><g class="hud"></g></svg>
diff --git a/other/text.svg b/other/text.svg
--- a/other/text.svg
+++ b/other/text.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.75 -0.5 1.5 1.0" width="450" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="450" height="300" viewBox="-0.75 -0.5 1.5 1.0"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -33,13 +33,13 @@
     fill: rgb(94%, 94%, 94%);
   }
 }
-</style><g class="chart"><g class="text"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0646" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.6054" y="0.3507">a</text><text x="-0.4764" y="0.3192">b</text><text x="-0.3488" y="0.2878">c</text><text x="-0.2236" y="0.2563">d</text><text x="-0.1023" y="0.2248">e</text><text x="0.0140" y="0.1934">f</text><text x="0.1240" y="0.1619">g</text><text x="0.2268" y="0.1304">h</text><text x="0.3213" y="0.0989">i</text><text x="0.4066" y="0.0675">j</text><text x="0.4817" y="0.0360">k</text><text x="0.5459" y="0.0045">l</text><text x="0.5987" y="-0.0269">m</text><text x="0.6394" y="-0.0584">n</text><text x="0.6677" y="-0.0899">o</text><text x="0.6832" y="-0.1214">p</text><text x="0.6859" y="-0.1528">q</text><text x="0.6757" y="-0.1843">r</text><text x="0.6527" y="-0.2158">s</text><text x="0.6171" y="-0.2472">t</text><text x="0.5693" y="-0.2787">u</text><text x="0.5098" y="-0.3102">v</text><text x="0.4391" y="-0.3417">w</text><text x="0.3580" y="-0.3731">x</text><text x="0.2672" y="-0.4046">y</text><text x="0.1677" y="-0.4361">z</text></g></g></g><g class="hud"><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.8517" width="1.3204" x="-0.6199" y="-0.4685"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><g transform="rotate(-90.0, -0.6458, 0.3507)"><polyline points="-0.6458,0.3657
+</style><g class="chart"><g class="text"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0646" text-anchor="middle"><text x="-0.6054" y="0.3507">a</text><text x="-0.4764" y="0.3192">b</text><text x="-0.3488" y="0.2878">c</text><text x="-0.2236" y="0.2563">d</text><text x="-0.1023" y="0.2248">e</text><text x="0.0140" y="0.1934">f</text><text x="0.1240" y="0.1619">g</text><text x="0.2268" y="0.1304">h</text><text x="0.3213" y="0.0989">i</text><text x="0.4066" y="0.0675">j</text><text x="0.4817" y="0.0360">k</text><text x="0.5459" y="0.0045">l</text><text x="0.5987" y="-0.0269">m</text><text x="0.6394" y="-0.0584">n</text><text x="0.6677" y="-0.0899">o</text><text x="0.6832" y="-0.1214">p</text><text x="0.6859" y="-0.1528">q</text><text x="0.6757" y="-0.1843">r</text><text x="0.6527" y="-0.2158">s</text><text x="0.6171" y="-0.2472">t</text><text x="0.5693" y="-0.2787">u</text><text x="0.5098" y="-0.3102">v</text><text x="0.4391" y="-0.3417">w</text><text x="0.3580" y="-0.3731">x</text><text x="0.2672" y="-0.4046">y</text><text x="0.1677" y="-0.4361">z</text></g></g></g><g class="hud"><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.3204" height="0.8517" x="-0.6199" y="-0.4685"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><g transform="rotate(-90.0, -0.6458, 0.3507)"><polyline points="-0.6458,0.3657
 -0.6458,0.3357"/></g><g transform="rotate(-90.0, -0.6458, 0.1934)"><polyline points="-0.6458,0.2084
 -0.6458,0.1784"/></g><g transform="rotate(-90.0, -0.6458, 0.0360)"><polyline points="-0.6458,0.0510
 -0.6458,0.0210"/></g><g transform="rotate(-90.0, -0.6458, -0.1214)"><polyline points="-0.6458,-0.1064
 -0.6458,-0.1364"/></g><g transform="rotate(-90.0, -0.6458, -0.2787)"><polyline points="-0.6458,-0.2637
 -0.6458,-0.2937"/></g><g transform="rotate(-90.0, -0.6458, -0.4361)"><polyline points="-0.6458,-0.4211
--0.6458,-0.4511"/></g></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0431" stroke="none" stroke-width="0.0" text-anchor="end"><text x="-0.6768" y="0.3615"> 0</text><text x="-0.6768" y="0.2042"> 5</text><text x="-0.6768" y="0.0468">10</text><text x="-0.6768" y="-0.1105">15</text><text x="-0.6768" y="-0.2679">20</text><text x="-0.6768" y="-0.4253">25</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.6054,0.3507 0.6865,0.3507"/><polyline points="-0.6054,0.1934 0.6865,0.1934"/><polyline points="-0.6054,0.0360 0.6865,0.0360"/><polyline points="-0.6054,-0.1214 0.6865,-0.1214"/><polyline points="-0.6054,-0.2787 0.6865,-0.2787"/><polyline points="-0.6054,-0.4361 0.6865,-0.4361"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.7899" width="0.0034" x="-0.6320" y="-0.4376"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.6054,0.4218
+-0.6458,-0.4511"/></g></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0431" text-anchor="end"><text x="-0.6768" y="0.3615"> 0</text><text x="-0.6768" y="0.2042"> 5</text><text x="-0.6768" y="0.0468">10</text><text x="-0.6768" y="-0.1105">15</text><text x="-0.6768" y="-0.2679">20</text><text x="-0.6768" y="-0.4253">25</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.6054,0.3507 0.6865,0.3507"/><polyline points="-0.6054,0.1934 0.6865,0.1934"/><polyline points="-0.6054,0.0360 0.6865,0.0360"/><polyline points="-0.6054,-0.1214 0.6865,-0.1214"/><polyline points="-0.6054,-0.2787 0.6865,-0.2787"/><polyline points="-0.6054,-0.4361 0.6865,-0.4361"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.0034" height="0.7899" x="-0.6320" y="-0.4376"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.6054,0.4218
 -0.6054,0.3918"/><polyline points="-0.4762,0.4218
 -0.4762,0.3918"/><polyline points="-0.3470,0.4218
 -0.3470,0.3918"/><polyline points="-0.2178,0.4218
@@ -50,4 +50,4 @@
 0.2989,0.3918"/><polyline points="0.4281,0.4218
 0.4281,0.3918"/><polyline points="0.5573,0.4218
 0.5573,0.3918"/><polyline points="0.6865,0.4218
-0.6865,0.3918"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0431" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.6054" y="0.4567">0.0</text><text x="-0.4762" y="0.4567">0.1</text><text x="-0.3470" y="0.4567">0.2</text><text x="-0.2178" y="0.4567">0.3</text><text x="-0.0887" y="0.4567">0.4</text><text x="0.0405" y="0.4567">0.5</text><text x="0.1697" y="0.4567">0.6</text><text x="0.2989" y="0.4567">0.7</text><text x="0.4281" y="0.4567">0.8</text><text x="0.5573" y="0.4567">0.9</text><text x="0.6865" y="0.4567">1.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.6054,0.3507 -0.6054,-0.4361"/><polyline points="-0.4762,0.3507 -0.4762,-0.4361"/><polyline points="-0.3470,0.3507 -0.3470,-0.4361"/><polyline points="-0.2178,0.3507 -0.2178,-0.4361"/><polyline points="-0.0887,0.3507 -0.0887,-0.4361"/><polyline points="0.0405,0.3507 0.0405,-0.4361"/><polyline points="0.1697,0.3507 0.1697,-0.4361"/><polyline points="0.2989,0.3507 0.2989,-0.4361"/><polyline points="0.4281,0.3507 0.4281,-0.4361"/><polyline points="0.5573,0.3507 0.5573,-0.4361"/><polyline points="0.6865,0.3507 0.6865,-0.4361"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0031" width="1.2953" x="-0.6071" y="0.3910"/></g></g></g><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="1.0" width="1.5" x="-0.75" y="-0.5"/></g></g></g></svg>
+0.6865,0.3918"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0431" text-anchor="middle"><text x="-0.6054" y="0.4567">0.0</text><text x="-0.4762" y="0.4567">0.1</text><text x="-0.3470" y="0.4567">0.2</text><text x="-0.2178" y="0.4567">0.3</text><text x="-0.0887" y="0.4567">0.4</text><text x="0.0405" y="0.4567">0.5</text><text x="0.1697" y="0.4567">0.6</text><text x="0.2989" y="0.4567">0.7</text><text x="0.4281" y="0.4567">0.8</text><text x="0.5573" y="0.4567">0.9</text><text x="0.6865" y="0.4567">1.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.6054,0.3507 -0.6054,-0.4361"/><polyline points="-0.4762,0.3507 -0.4762,-0.4361"/><polyline points="-0.3470,0.3507 -0.3470,-0.4361"/><polyline points="-0.2178,0.3507 -0.2178,-0.4361"/><polyline points="-0.0887,0.3507 -0.0887,-0.4361"/><polyline points="0.0405,0.3507 0.0405,-0.4361"/><polyline points="0.1697,0.3507 0.1697,-0.4361"/><polyline points="0.2989,0.3507 0.2989,-0.4361"/><polyline points="0.4281,0.3507 0.4281,-0.4361"/><polyline points="0.5573,0.3507 0.5573,-0.4361"/><polyline points="0.6865,0.3507 0.6865,-0.4361"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="1.2953" height="0.0031" x="-0.6071" y="0.3910"/></g></g></g><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.5" height="1.0" x="-0.75" y="-0.5"/></g></g></g></svg>
diff --git a/other/unit.svg b/other/unit.svg
--- a/other/unit.svg
+++ b/other/unit.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.75 -0.5 1.5 1.0" width="450" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="450" height="300" viewBox="-0.75 -0.5 1.5 1.0"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,7 +22,7 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"><g class="unit"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.1" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0100"><rect height="0.8198" width="1.2598" x="-0.5812" y="-0.4457"/></g></g></g><g class="hud"><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.8280" width="1.2682" x="-0.5854" y="-0.4498"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><g transform="rotate(-90.0, -0.6106, 0.3742)"><polyline points="-0.6106,0.3892
+}</style><g class="chart"><g class="unit"><g stroke-width="0.0100" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.1"><rect width="1.2598" height="0.8198" x="-0.5812" y="-0.4457"/></g></g></g><g class="hud"><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.2682" height="0.8280" x="-0.5854" y="-0.4498"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><g transform="rotate(-90.0, -0.6106, 0.3742)"><polyline points="-0.6106,0.3892
 -0.6106,0.3592"/></g><g transform="rotate(-90.0, -0.6106, 0.2922)"><polyline points="-0.6106,0.3072
 -0.6106,0.2772"/></g><g transform="rotate(-90.0, -0.6106, 0.2102)"><polyline points="-0.6106,0.2252
 -0.6106,0.1952"/></g><g transform="rotate(-90.0, -0.6106, 0.1282)"><polyline points="-0.6106,0.1432
@@ -33,7 +33,7 @@
 -0.6106,-0.2147"/></g><g transform="rotate(-90.0, -0.6106, -0.2817)"><polyline points="-0.6106,-0.2667
 -0.6106,-0.2967"/></g><g transform="rotate(-90.0, -0.6106, -0.3637)"><polyline points="-0.6106,-0.3487
 -0.6106,-0.3787"/></g><g transform="rotate(-90.0, -0.6106, -0.4457)"><polyline points="-0.6106,-0.4307
--0.6106,-0.4607"/></g></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0420" stroke="none" stroke-width="0.0" text-anchor="end"><text x="-0.6408" y="0.3854">-0.5</text><text x="-0.6408" y="0.3034">-0.4</text><text x="-0.6408" y="0.2215">-0.3</text><text x="-0.6408" y="0.1395">-0.2</text><text x="-0.6408" y="0.0575">-0.1</text><text x="-0.6408" y="-0.0245"> 0.0</text><text x="-0.6408" y="-0.1065"> 0.1</text><text x="-0.6408" y="-0.1885"> 0.2</text><text x="-0.6408" y="-0.2704"> 0.3</text><text x="-0.6408" y="-0.3524"> 0.4</text><text x="-0.6408" y="-0.4344"> 0.5</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.5812,0.3742 0.6786,0.3742"/><polyline points="-0.5812,0.2922 0.6786,0.2922"/><polyline points="-0.5812,0.2102 0.6786,0.2102"/><polyline points="-0.5812,0.1282 0.6786,0.1282"/><polyline points="-0.5812,0.0462 0.6786,0.0462"/><polyline points="-0.5812,-0.0358 0.6786,-0.0358"/><polyline points="-0.5812,-0.1177 0.6786,-0.1177"/><polyline points="-0.5812,-0.1997 0.6786,-0.1997"/><polyline points="-0.5812,-0.2817 0.6786,-0.2817"/><polyline points="-0.5812,-0.3637 0.6786,-0.3637"/><polyline points="-0.5812,-0.4457 0.6786,-0.4457"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.8231" width="0.0034" x="-0.5971" y="-0.4473"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.5812,0.4178
+-0.6106,-0.4607"/></g></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0420" text-anchor="end"><text x="-0.6408" y="0.3854">-0.5</text><text x="-0.6408" y="0.3034">-0.4</text><text x="-0.6408" y="0.2215">-0.3</text><text x="-0.6408" y="0.1395">-0.2</text><text x="-0.6408" y="0.0575">-0.1</text><text x="-0.6408" y="-0.0245"> 0.0</text><text x="-0.6408" y="-0.1065"> 0.1</text><text x="-0.6408" y="-0.1885"> 0.2</text><text x="-0.6408" y="-0.2704"> 0.3</text><text x="-0.6408" y="-0.3524"> 0.4</text><text x="-0.6408" y="-0.4344"> 0.5</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.5812,0.3742 0.6786,0.3742"/><polyline points="-0.5812,0.2922 0.6786,0.2922"/><polyline points="-0.5812,0.2102 0.6786,0.2102"/><polyline points="-0.5812,0.1282 0.6786,0.1282"/><polyline points="-0.5812,0.0462 0.6786,0.0462"/><polyline points="-0.5812,-0.0358 0.6786,-0.0358"/><polyline points="-0.5812,-0.1177 0.6786,-0.1177"/><polyline points="-0.5812,-0.1997 0.6786,-0.1997"/><polyline points="-0.5812,-0.2817 0.6786,-0.2817"/><polyline points="-0.5812,-0.3637 0.6786,-0.3637"/><polyline points="-0.5812,-0.4457 0.6786,-0.4457"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.0034" height="0.8231" x="-0.5971" y="-0.4473"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.5812,0.4178
 -0.5812,0.3878"/><polyline points="-0.4552,0.4178
 -0.4552,0.3878"/><polyline points="-0.3292,0.4178
 -0.3292,0.3878"/><polyline points="-0.2032,0.4178
@@ -44,4 +44,4 @@
 0.3007,0.3878"/><polyline points="0.4267,0.4178
 0.4267,0.3878"/><polyline points="0.5526,0.4178
 0.5526,0.3878"/><polyline points="0.6786,0.4178
-0.6786,0.3878"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0420" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.5812" y="0.4549">-0.5</text><text x="-0.4552" y="0.4549">-0.4</text><text x="-0.3292" y="0.4549">-0.3</text><text x="-0.2032" y="0.4549">-0.2</text><text x="-0.0773" y="0.4549">-0.1</text><text x="0.0487" y="0.4549"> 0.0</text><text x="0.1747" y="0.4549"> 0.1</text><text x="0.3007" y="0.4549"> 0.2</text><text x="0.4267" y="0.4549"> 0.3</text><text x="0.5526" y="0.4549"> 0.4</text><text x="0.6786" y="0.4549"> 0.5</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.5812,0.3742 -0.5812,-0.4457"/><polyline points="-0.4552,0.3742 -0.4552,-0.4457"/><polyline points="-0.3292,0.3742 -0.3292,-0.4457"/><polyline points="-0.2032,0.3742 -0.2032,-0.4457"/><polyline points="-0.0773,0.3742 -0.0773,-0.4457"/><polyline points="0.0487,0.3742 0.0487,-0.4457"/><polyline points="0.1747,0.3742 0.1747,-0.4457"/><polyline points="0.3007,0.3742 0.3007,-0.4457"/><polyline points="0.4267,0.3742 0.4267,-0.4457"/><polyline points="0.5526,0.3742 0.5526,-0.4457"/><polyline points="0.6786,0.3742 0.6786,-0.4457"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0033" width="1.2632" x="-0.5829" y="0.3865"/></g></g></g><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="1.0" width="1.5" x="-0.75" y="-0.5"/></g></g></g></svg>
+0.6786,0.3878"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0420" text-anchor="middle"><text x="-0.5812" y="0.4549">-0.5</text><text x="-0.4552" y="0.4549">-0.4</text><text x="-0.3292" y="0.4549">-0.3</text><text x="-0.2032" y="0.4549">-0.2</text><text x="-0.0773" y="0.4549">-0.1</text><text x="0.0487" y="0.4549"> 0.0</text><text x="0.1747" y="0.4549"> 0.1</text><text x="0.3007" y="0.4549"> 0.2</text><text x="0.4267" y="0.4549"> 0.3</text><text x="0.5526" y="0.4549"> 0.4</text><text x="0.6786" y="0.4549"> 0.5</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.5812,0.3742 -0.5812,-0.4457"/><polyline points="-0.4552,0.3742 -0.4552,-0.4457"/><polyline points="-0.3292,0.3742 -0.3292,-0.4457"/><polyline points="-0.2032,0.3742 -0.2032,-0.4457"/><polyline points="-0.0773,0.3742 -0.0773,-0.4457"/><polyline points="0.0487,0.3742 0.0487,-0.4457"/><polyline points="0.1747,0.3742 0.1747,-0.4457"/><polyline points="0.3007,0.3742 0.3007,-0.4457"/><polyline points="0.4267,0.3742 0.4267,-0.4457"/><polyline points="0.5526,0.3742 0.5526,-0.4457"/><polyline points="0.6786,0.3742 0.6786,-0.4457"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="1.2632" height="0.0033" x="-0.5829" y="0.3865"/></g></g></g><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.5" height="1.0" x="-0.75" y="-0.5"/></g></g></g></svg>
diff --git a/other/usage.svg b/other/usage.svg
--- a/other/usage.svg
+++ b/other/usage.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.75 -0.5 1.5000 1.0" width="449" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="449" height="300" viewBox="-0.75 -0.5 1.5000 1.0"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,7 +22,7 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"><g class="line"><g fill="none" stroke="rgb(2%, 73%, 80%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="-0.5953,0.2087 -0.1679,0.2087 0.2595,-0.4458"/></g><g fill="none" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="-0.5953,0.3724 0.6015,-0.1185"/></g><g fill="none" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" stroke-width="0.0150"><polyline points="-0.3816,-0.2822 -0.3816,0.3724"/></g></g></g><g class="hud"><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.8304" width="1.2886" x="-0.6017" y="-0.4519"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><g transform="rotate(-90.0, -0.6273, 0.3724)"><polyline points="-0.6273,0.3874
+}</style><g class="chart"><g class="line"><g stroke-width="0.0150" stroke="rgb(2%, 73%, 80%)" stroke-opacity="1.0" fill="none"><polyline points="-0.5953,0.2087 -0.1679,0.2087 0.2595,-0.4458"/></g><g stroke-width="0.0150" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="none"><polyline points="-0.5953,0.3724 0.6015,-0.1185"/></g><g stroke-width="0.0150" stroke="rgb(66%, 7%, 55%)" stroke-opacity="1.0" fill="none"><polyline points="-0.3816,-0.2822 -0.3816,0.3724"/></g></g></g><g class="hud"><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.2886" height="0.8304" x="-0.6017" y="-0.4519"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><g transform="rotate(-90.0, -0.6273, 0.3724)"><polyline points="-0.6273,0.3874
 -0.6273,0.3574"/></g><g transform="rotate(-90.0, -0.6273, 0.2906)"><polyline points="-0.6273,0.3056
 -0.6273,0.2756"/></g><g transform="rotate(-90.0, -0.6273, 0.2087)"><polyline points="-0.6273,0.2237
 -0.6273,0.1937"/></g><g transform="rotate(-90.0, -0.6273, 0.1269)"><polyline points="-0.6273,0.1419
@@ -33,11 +33,11 @@
 -0.6273,-0.2153"/></g><g transform="rotate(-90.0, -0.6273, -0.2822)"><polyline points="-0.6273,-0.2672
 -0.6273,-0.2972"/></g><g transform="rotate(-90.0, -0.6273, -0.3640)"><polyline points="-0.6273,-0.3490
 -0.6273,-0.3790"/></g><g transform="rotate(-90.0, -0.6273, -0.4458)"><polyline points="-0.6273,-0.4308
--0.6273,-0.4608"/></g></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0427" stroke="none" stroke-width="0.0" text-anchor="end"><text x="-0.6581" y="0.3836">0.0</text><text x="-0.6581" y="0.3018">0.5</text><text x="-0.6581" y="0.2200">1.0</text><text x="-0.6581" y="0.1382">1.5</text><text x="-0.6581" y="0.0564">2.0</text><text x="-0.6581" y="-0.0255">2.5</text><text x="-0.6581" y="-0.1073">3.0</text><text x="-0.6581" y="-0.1891">3.5</text><text x="-0.6581" y="-0.2709">4.0</text><text x="-0.6581" y="-0.3527">4.5</text><text x="-0.6581" y="-0.4345">5.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.5953,0.3724 0.6870,0.3724"/><polyline points="-0.5953,0.2906 0.6870,0.2906"/><polyline points="-0.5953,0.2087 0.6870,0.2087"/><polyline points="-0.5953,0.1269 0.6870,0.1269"/><polyline points="-0.5953,0.0451 0.6870,0.0451"/><polyline points="-0.5953,-0.0367 0.6870,-0.0367"/><polyline points="-0.5953,-0.1185 0.6870,-0.1185"/><polyline points="-0.5953,-0.2003 0.6870,-0.2003"/><polyline points="-0.5953,-0.2822 0.6870,-0.2822"/><polyline points="-0.5953,-0.3640 0.6870,-0.3640"/><polyline points="-0.5953,-0.4458 0.6870,-0.4458"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.8214" width="0.0034" x="-0.6137" y="-0.4474"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.5953,0.4180
+-0.6273,-0.4608"/></g></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0427" text-anchor="end"><text x="-0.6581" y="0.3836">0.0</text><text x="-0.6581" y="0.3018">0.5</text><text x="-0.6581" y="0.2200">1.0</text><text x="-0.6581" y="0.1382">1.5</text><text x="-0.6581" y="0.0564">2.0</text><text x="-0.6581" y="-0.0255">2.5</text><text x="-0.6581" y="-0.1073">3.0</text><text x="-0.6581" y="-0.1891">3.5</text><text x="-0.6581" y="-0.2709">4.0</text><text x="-0.6581" y="-0.3527">4.5</text><text x="-0.6581" y="-0.4345">5.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.5953,0.3724 0.6870,0.3724"/><polyline points="-0.5953,0.2906 0.6870,0.2906"/><polyline points="-0.5953,0.2087 0.6870,0.2087"/><polyline points="-0.5953,0.1269 0.6870,0.1269"/><polyline points="-0.5953,0.0451 0.6870,0.0451"/><polyline points="-0.5953,-0.0367 0.6870,-0.0367"/><polyline points="-0.5953,-0.1185 0.6870,-0.1185"/><polyline points="-0.5953,-0.2003 0.6870,-0.2003"/><polyline points="-0.5953,-0.2822 0.6870,-0.2822"/><polyline points="-0.5953,-0.3640 0.6870,-0.3640"/><polyline points="-0.5953,-0.4458 0.6870,-0.4458"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.0034" height="0.8214" x="-0.6137" y="-0.4474"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.5953,0.4180
 -0.5953,0.3880"/><polyline points="-0.3816,0.4180
 -0.3816,0.3880"/><polyline points="-0.1679,0.4180
 -0.1679,0.3880"/><polyline points="0.0458,0.4180
 0.0458,0.3880"/><polyline points="0.2595,0.4180
 0.2595,0.3880"/><polyline points="0.4733,0.4180
 0.4733,0.3880"/><polyline points="0.6870,0.4180
-0.6870,0.3880"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0427" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.5953" y="0.4550">0.0</text><text x="-0.3816" y="0.4550">0.5</text><text x="-0.1679" y="0.4550">1.0</text><text x="0.0458" y="0.4550">1.5</text><text x="0.2595" y="0.4550">2.0</text><text x="0.4733" y="0.4550">2.5</text><text x="0.6870" y="0.4550">3.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.5953,0.3724 -0.5953,-0.4458"/><polyline points="-0.3816,0.3724 -0.3816,-0.4458"/><polyline points="-0.1679,0.3724 -0.1679,-0.4458"/><polyline points="0.0458,0.3724 0.0458,-0.4458"/><polyline points="0.2595,0.3724 0.2595,-0.4458"/><polyline points="0.4733,0.3724 0.4733,-0.4458"/><polyline points="0.6870,0.3724 0.6870,-0.4458"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0033" width="1.2857" x="-0.5970" y="0.3867"/></g></g></g><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="1.0" width="1.5000" x="-0.75" y="-0.5"/></g></g></g></svg>
+0.6870,0.3880"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0427" text-anchor="middle"><text x="-0.5953" y="0.4550">0.0</text><text x="-0.3816" y="0.4550">0.5</text><text x="-0.1679" y="0.4550">1.0</text><text x="0.0458" y="0.4550">1.5</text><text x="0.2595" y="0.4550">2.0</text><text x="0.4733" y="0.4550">2.5</text><text x="0.6870" y="0.4550">3.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.5953,0.3724 -0.5953,-0.4458"/><polyline points="-0.3816,0.3724 -0.3816,-0.4458"/><polyline points="-0.1679,0.3724 -0.1679,-0.4458"/><polyline points="0.0458,0.3724 0.0458,-0.4458"/><polyline points="0.2595,0.3724 0.2595,-0.4458"/><polyline points="0.4733,0.3724 0.4733,-0.4458"/><polyline points="0.6870,0.3724 0.6870,-0.4458"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="1.2857" height="0.0033" x="-0.5970" y="0.3867"/></g></g></g><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.5000" height="1.0" x="-0.75" y="-0.5"/></g></g></g></svg>
diff --git a/other/venn.svg b/other/venn.svg
--- a/other/venn.svg
+++ b/other/venn.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.5 -0.5 1.0 1.0" width="300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="300" height="300" viewBox="-0.5 -0.5 1.0 1.0"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,18 +22,18 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"><g class="venn"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0050"><path d="M 0.0592,-0.3781 A 0.1334 0.1306 0 1 1 0.3261,0.0742 A 0.2669 0.2611 0 0 0 0.1926,-0.1520 A 0.2669 0.2611 0 0 0 0.0592,-0.3781 L 0.0592,-0.3781"/></g><g fill="rgb(2%, 29%, 48%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0050"><path d="M -0.2077,0.0742 A 0.1334 0.1306 0 1 0 0.3261,0.0742 A 0.2669 0.2611 0 0 1 0.0592,0.0742 A 0.2669 0.2611 0 0 1 -0.2077,0.0742 L -0.2077,0.0742"/></g><g fill="rgb(66%, 7%, 55%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0050"><path d="M -0.2077,0.0742 A 0.1334 0.1306 0 1 1 0.0592,-0.3781 A 0.2669 0.2611 0 0 0 -0.0742,-0.1520 A 0.2669 0.2611 0 0 0 -0.2077,0.0742 L -0.2077,0.0742"/></g><g fill="rgb(96%, 60%, 92%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0050"><path d="M 0.1926,-0.1520 A 0.2669 0.2611 0 0 1 0.3261,0.0742 A 0.2669 0.2611 0 0 1 0.0592,0.0742 A 0.2669 0.2611 0 0 0 0.1926,-0.1520 L 0.1926,-0.1520"/></g><g fill="rgb(100%, 71%, 35%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0050"><path d="M 0.0592,0.0742 A 0.2669 0.2611 0 0 1 -0.2077,0.0742 A 0.2669 0.2611 0 0 1 -0.0742,-0.1520 A 0.2669 0.2611 0 0 0 0.0592,0.0742 L 0.0592,0.0742"/></g><g fill="rgb(73%, 34%, 1%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0050"><path d="M 0.0592,-0.3781 A 0.2669 0.2611 0 0 1 0.1926,-0.1520 A 0.2669 0.2611 0 0 0 -0.0742,-0.1520 A 0.2669 0.2611 0 0 1 0.0592,-0.3781 L 0.0592,-0.3781"/></g><g fill="rgb(21%, 29%, 7%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0050"><path d="M 0.1926,-0.1520 A 0.2669 0.2611 0 0 1 0.0592,0.0742 A 0.2669 0.2611 0 0 1 -0.0742,-0.1520 A 0.2669 0.2611 0 0 1 0.1926,-0.1520 L 0.1926,-0.1520"/></g></g></g><g class="hud"><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.7854" width="0.8046" x="-0.3431" y="-0.4481"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><g transform="rotate(-90.0, -0.3671, 0.3353)"><polyline points="-0.3671,0.3503
+}</style><g class="chart"><g class="venn"><g stroke-width="0.0050" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><path d="M 0.0592,-0.3781 A 0.1334 0.1306 0 1 1 0.3261,0.0742 A 0.2669 0.2611 0 0 0 0.1926,-0.1520 A 0.2669 0.2611 0 0 0 0.0592,-0.3781 L 0.0592,-0.3781"/></g><g stroke-width="0.0050" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 29%, 48%)" fill-opacity="0.2"><path d="M -0.2077,0.0742 A 0.1334 0.1306 0 1 0 0.3261,0.0742 A 0.2669 0.2611 0 0 1 0.0592,0.0742 A 0.2669 0.2611 0 0 1 -0.2077,0.0742 L -0.2077,0.0742"/></g><g stroke-width="0.0050" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(66%, 7%, 55%)" fill-opacity="0.2"><path d="M -0.2077,0.0742 A 0.1334 0.1306 0 1 1 0.0592,-0.3781 A 0.2669 0.2611 0 0 0 -0.0742,-0.1520 A 0.2669 0.2611 0 0 0 -0.2077,0.0742 L -0.2077,0.0742"/></g><g stroke-width="0.0050" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(96%, 60%, 92%)" fill-opacity="0.2"><path d="M 0.1926,-0.1520 A 0.2669 0.2611 0 0 1 0.3261,0.0742 A 0.2669 0.2611 0 0 1 0.0592,0.0742 A 0.2669 0.2611 0 0 0 0.1926,-0.1520 L 0.1926,-0.1520"/></g><g stroke-width="0.0050" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(100%, 71%, 35%)" fill-opacity="0.2"><path d="M 0.0592,0.0742 A 0.2669 0.2611 0 0 1 -0.2077,0.0742 A 0.2669 0.2611 0 0 1 -0.0742,-0.1520 A 0.2669 0.2611 0 0 0 0.0592,0.0742 L 0.0592,0.0742"/></g><g stroke-width="0.0050" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(73%, 34%, 1%)" fill-opacity="0.2"><path d="M 0.0592,-0.3781 A 0.2669 0.2611 0 0 1 0.1926,-0.1520 A 0.2669 0.2611 0 0 0 -0.0742,-0.1520 A 0.2669 0.2611 0 0 1 0.0592,-0.3781 L 0.0592,-0.3781"/></g><g stroke-width="0.0050" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(21%, 29%, 7%)" fill-opacity="0.2"><path d="M 0.1926,-0.1520 A 0.2669 0.2611 0 0 1 0.0592,0.0742 A 0.2669 0.2611 0 0 1 -0.0742,-0.1520 A 0.2669 0.2611 0 0 1 0.1926,-0.1520 L 0.1926,-0.1520"/></g></g></g><g class="hud"><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="0.8046" height="0.7854" x="-0.3431" y="-0.4481"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><g transform="rotate(-90.0, -0.3671, 0.3353)"><polyline points="-0.3671,0.3503
 -0.3671,0.3203"/></g><g transform="rotate(-90.0, -0.3671, 0.2047)"><polyline points="-0.3671,0.2197
 -0.3671,0.1897"/></g><g transform="rotate(-90.0, -0.3671, 0.0742)"><polyline points="-0.3671,0.0892
 -0.3671,0.0592"/></g><g transform="rotate(-90.0, -0.3671, -0.0564)"><polyline points="-0.3671,-0.0414
 -0.3671,-0.0714"/></g><g transform="rotate(-90.0, -0.3671, -0.1870)"><polyline points="-0.3671,-0.1720
 -0.3671,-0.2020"/></g><g transform="rotate(-90.0, -0.3671, -0.3175)"><polyline points="-0.3671,-0.3025
 -0.3671,-0.3325"/></g><g transform="rotate(-90.0, -0.3671, -0.4481)"><polyline points="-0.3671,-0.4331
--0.3671,-0.4631"/></g></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0400" stroke="none" stroke-width="0.0" text-anchor="end"><text x="-0.3959" y="0.3461">-2.0</text><text x="-0.3959" y="0.2155">-1.0</text><text x="-0.3959" y="0.0849">-0.5</text><text x="-0.3959" y="-0.0456"> 0.0</text><text x="-0.3959" y="-0.1762"> 0.5</text><text x="-0.3959" y="-0.3068"> 1.0</text><text x="-0.3959" y="-0.4373"> 2.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.3411,0.3353 0.4595,0.3353"/><polyline points="-0.3411,0.2047 0.4595,0.2047"/><polyline points="-0.3411,0.0742 0.4595,0.0742"/><polyline points="-0.3411,-0.0564 0.4595,-0.0564"/><polyline points="-0.3411,-0.1870 0.4595,-0.1870"/><polyline points="-0.3411,-0.3175 0.4595,-0.3175"/><polyline points="-0.3411,-0.4481 0.4595,-0.4481"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.7865" width="0.0032" x="-0.3543" y="-0.4497"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.3411,0.3758
+-0.3671,-0.4631"/></g></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0400" text-anchor="end"><text x="-0.3959" y="0.3461">-2.0</text><text x="-0.3959" y="0.2155">-1.0</text><text x="-0.3959" y="0.0849">-0.5</text><text x="-0.3959" y="-0.0456"> 0.0</text><text x="-0.3959" y="-0.1762"> 0.5</text><text x="-0.3959" y="-0.3068"> 1.0</text><text x="-0.3959" y="-0.4373"> 2.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.3411,0.3353 0.4595,0.3353"/><polyline points="-0.3411,0.2047 0.4595,0.2047"/><polyline points="-0.3411,0.0742 0.4595,0.0742"/><polyline points="-0.3411,-0.0564 0.4595,-0.0564"/><polyline points="-0.3411,-0.1870 0.4595,-0.1870"/><polyline points="-0.3411,-0.3175 0.4595,-0.3175"/><polyline points="-0.3411,-0.4481 0.4595,-0.4481"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.0032" height="0.7865" x="-0.3543" y="-0.4497"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.3411,0.3758
 -0.3411,0.3458"/><polyline points="-0.2077,0.3758
 -0.2077,0.3458"/><polyline points="-0.0742,0.3758
 -0.0742,0.3458"/><polyline points="0.0592,0.3758
 0.0592,0.3458"/><polyline points="0.1926,0.3758
 0.1926,0.3458"/><polyline points="0.3261,0.3758
 0.3261,0.3458"/><polyline points="0.4595,0.3758
-0.4595,0.3458"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0400" stroke="none" stroke-width="0.0" text-anchor="end"><text transform="rotate(-45.0, -0.3411, 0.4105)" x="-0.3411" y="0.4105">-2.0</text><text transform="rotate(-45.0, -0.2077, 0.4105)" x="-0.2077" y="0.4105">-1.0</text><text transform="rotate(-45.0, -0.0742, 0.4105)" x="-0.0742" y="0.4105">-0.5</text><text transform="rotate(-45.0, 0.0592, 0.4105)" x="0.0592" y="0.4105"> 0.0</text><text transform="rotate(-45.0, 0.1926, 0.4105)" x="0.1926" y="0.4105"> 0.5</text><text transform="rotate(-45.0, 0.3261, 0.4105)" x="0.3261" y="0.4105"> 1.0</text><text transform="rotate(-45.0, 0.4595, 0.4105)" x="0.4595" y="0.4105"> 2.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.3411,0.3353 -0.3411,-0.4481"/><polyline points="-0.2077,0.3353 -0.2077,-0.4481"/><polyline points="-0.0742,0.3353 -0.0742,-0.4481"/><polyline points="0.0592,0.3353 0.0592,-0.4481"/><polyline points="0.1926,0.3353 0.1926,-0.4481"/><polyline points="0.3261,0.3353 0.3261,-0.4481"/><polyline points="0.4595,0.3353 0.4595,-0.4481"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0031" width="0.8038" x="-0.3427" y="0.3451"/></g></g></g><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="1.0" width="1.0" x="-0.5" y="-0.5"/></g></g></g></svg>
+0.4595,0.3458"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0400" text-anchor="end"><text x="-0.3411" y="0.4105" transform="rotate(-45.0, -0.3411, 0.4105)">-2.0</text><text x="-0.2077" y="0.4105" transform="rotate(-45.0, -0.2077, 0.4105)">-1.0</text><text x="-0.0742" y="0.4105" transform="rotate(-45.0, -0.0742, 0.4105)">-0.5</text><text x="0.0592" y="0.4105" transform="rotate(-45.0, 0.0592, 0.4105)"> 0.0</text><text x="0.1926" y="0.4105" transform="rotate(-45.0, 0.1926, 0.4105)"> 0.5</text><text x="0.3261" y="0.4105" transform="rotate(-45.0, 0.3261, 0.4105)"> 1.0</text><text x="0.4595" y="0.4105" transform="rotate(-45.0, 0.4595, 0.4105)"> 2.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.3411,0.3353 -0.3411,-0.4481"/><polyline points="-0.2077,0.3353 -0.2077,-0.4481"/><polyline points="-0.0742,0.3353 -0.0742,-0.4481"/><polyline points="0.0592,0.3353 0.0592,-0.4481"/><polyline points="0.1926,0.3353 0.1926,-0.4481"/><polyline points="0.3261,0.3353 0.3261,-0.4481"/><polyline points="0.4595,0.3353 0.4595,-0.4481"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.8038" height="0.0031" x="-0.3427" y="0.3451"/></g></g></g><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.0" height="1.0" x="-0.5" y="-0.5"/></g></g></g></svg>
diff --git a/other/wave.svg b/other/wave.svg
--- a/other/wave.svg
+++ b/other/wave.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.75 -0.5 1.5000 1.0" width="449" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="449" height="300" viewBox="-0.75 -0.5 1.5000 1.0"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,7 +22,7 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"><g class="wave"><g fill="rgb(2%, 73%, 80%)" fill-opacity="0.2" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0.0030"><rect height="0.0300" width="0.0300" x="-0.5843" y="-0.0541"/><rect height="0.0300" width="0.0300" x="-0.5461" y="-0.1387"/><rect height="0.0300" width="0.0300" x="-0.5079" y="-0.2196"/><rect height="0.0300" width="0.0300" x="-0.4698" y="-0.2933"/><rect height="0.0300" width="0.0300" x="-0.4316" y="-0.3565"/><rect height="0.0300" width="0.0300" x="-0.3934" y="-0.4065"/><rect height="0.0300" width="0.0300" x="-0.3553" y="-0.4412"/><rect height="0.0300" width="0.0300" x="-0.3171" y="-0.4588"/><rect height="0.0300" width="0.0300" x="-0.2789" y="-0.4588"/><rect height="0.0300" width="0.0300" x="-0.2408" y="-0.4412"/><rect height="0.0300" width="0.0300" x="-0.2026" y="-0.4065"/><rect height="0.0300" width="0.0300" x="-0.1644" y="-0.3565"/><rect height="0.0300" width="0.0300" x="-0.1263" y="-0.2933"/><rect height="0.0300" width="0.0300" x="-0.0881" y="-0.2196"/><rect height="0.0300" width="0.0300" x="-0.0499" y="-0.1387"/><rect height="0.0300" width="0.0300" x="-0.0117" y="-0.0541"/><rect height="0.0300" width="0.0300" x="0.0264" y="0.0305"/><rect height="0.0300" width="0.0300" x="0.0646" y="0.1115"/><rect height="0.0300" width="0.0300" x="0.1028" y="0.1852"/><rect height="0.0300" width="0.0300" x="0.1409" y="0.2484"/><rect height="0.0300" width="0.0300" x="0.1791" y="0.2984"/><rect height="0.0300" width="0.0300" x="0.2173" y="0.3330"/><rect height="0.0300" width="0.0300" x="0.2554" y="0.3507"/><rect height="0.0300" width="0.0300" x="0.2936" y="0.3507"/><rect height="0.0300" width="0.0300" x="0.3318" y="0.3330"/><rect height="0.0300" width="0.0300" x="0.3699" y="0.2984"/><rect height="0.0300" width="0.0300" x="0.4081" y="0.2484"/><rect height="0.0300" width="0.0300" x="0.4463" y="0.1852"/><rect height="0.0300" width="0.0300" x="0.4844" y="0.1115"/><rect height="0.0300" width="0.0300" x="0.5226" y="0.0305"/><rect height="0.0300" width="0.0300" x="0.5608" y="-0.0541"/></g></g></g><g class="hud"><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.8364" width="1.2897" x="-0.5833" y="-0.4573"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><g transform="rotate(-90.0, -0.6088, 0.3679)"><polyline points="-0.6088,0.3829
+}</style><g class="chart"><g class="wave"><g stroke-width="0.0030" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="0.2"><rect width="0.0300" height="0.0300" x="-0.5843" y="-0.0541"/><rect width="0.0300" height="0.0300" x="-0.5461" y="-0.1387"/><rect width="0.0300" height="0.0300" x="-0.5079" y="-0.2196"/><rect width="0.0300" height="0.0300" x="-0.4698" y="-0.2933"/><rect width="0.0300" height="0.0300" x="-0.4316" y="-0.3565"/><rect width="0.0300" height="0.0300" x="-0.3934" y="-0.4065"/><rect width="0.0300" height="0.0300" x="-0.3553" y="-0.4412"/><rect width="0.0300" height="0.0300" x="-0.3171" y="-0.4588"/><rect width="0.0300" height="0.0300" x="-0.2789" y="-0.4588"/><rect width="0.0300" height="0.0300" x="-0.2408" y="-0.4412"/><rect width="0.0300" height="0.0300" x="-0.2026" y="-0.4065"/><rect width="0.0300" height="0.0300" x="-0.1644" y="-0.3565"/><rect width="0.0300" height="0.0300" x="-0.1263" y="-0.2933"/><rect width="0.0300" height="0.0300" x="-0.0881" y="-0.2196"/><rect width="0.0300" height="0.0300" x="-0.0499" y="-0.1387"/><rect width="0.0300" height="0.0300" x="-0.0117" y="-0.0541"/><rect width="0.0300" height="0.0300" x="0.0264" y="0.0305"/><rect width="0.0300" height="0.0300" x="0.0646" y="0.1115"/><rect width="0.0300" height="0.0300" x="0.1028" y="0.1852"/><rect width="0.0300" height="0.0300" x="0.1409" y="0.2484"/><rect width="0.0300" height="0.0300" x="0.1791" y="0.2984"/><rect width="0.0300" height="0.0300" x="0.2173" y="0.3330"/><rect width="0.0300" height="0.0300" x="0.2554" y="0.3507"/><rect width="0.0300" height="0.0300" x="0.2936" y="0.3507"/><rect width="0.0300" height="0.0300" x="0.3318" y="0.3330"/><rect width="0.0300" height="0.0300" x="0.3699" y="0.2984"/><rect width="0.0300" height="0.0300" x="0.4081" y="0.2484"/><rect width="0.0300" height="0.0300" x="0.4463" y="0.1852"/><rect width="0.0300" height="0.0300" x="0.4844" y="0.1115"/><rect width="0.0300" height="0.0300" x="0.5226" y="0.0305"/><rect width="0.0300" height="0.0300" x="0.5608" y="-0.0541"/></g></g></g><g class="hud"><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.2897" height="0.8364" x="-0.5833" y="-0.4573"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><g transform="rotate(-90.0, -0.6088, 0.3679)"><polyline points="-0.6088,0.3829
 -0.6088,0.3529"/></g><g transform="rotate(-90.0, -0.6088, 0.2865)"><polyline points="-0.6088,0.3015
 -0.6088,0.2715"/></g><g transform="rotate(-90.0, -0.6088, 0.2051)"><polyline points="-0.6088,0.2201
 -0.6088,0.1901"/></g><g transform="rotate(-90.0, -0.6088, 0.1237)"><polyline points="-0.6088,0.1387
@@ -33,7 +33,7 @@
 -0.6088,-0.2169"/></g><g transform="rotate(-90.0, -0.6088, -0.2833)"><polyline points="-0.6088,-0.2683
 -0.6088,-0.2983"/></g><g transform="rotate(-90.0, -0.6088, -0.3647)"><polyline points="-0.6088,-0.3497
 -0.6088,-0.3797"/></g><g transform="rotate(-90.0, -0.6088, -0.4461)"><polyline points="-0.6088,-0.4311
--0.6088,-0.4611"/></g></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0425" stroke="none" stroke-width="0.0" text-anchor="end"><text x="-0.6394" y="0.3791">-1.0</text><text x="-0.6394" y="0.2977">-0.8</text><text x="-0.6394" y="0.2163">-0.6</text><text x="-0.6394" y="0.1349">-0.4</text><text x="-0.6394" y="0.0535">-0.2</text><text x="-0.6394" y="-0.0279"> 0.0</text><text x="-0.6394" y="-0.1093"> 0.2</text><text x="-0.6394" y="-0.1907"> 0.4</text><text x="-0.6394" y="-0.2721"> 0.6</text><text x="-0.6394" y="-0.3535"> 0.8</text><text x="-0.6394" y="-0.4349"> 1.0</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.5693,0.3679 0.7064,0.3679"/><polyline points="-0.5693,0.2865 0.7064,0.2865"/><polyline points="-0.5693,0.2051 0.7064,0.2051"/><polyline points="-0.5693,0.1237 0.7064,0.1237"/><polyline points="-0.5693,0.0423 0.7064,0.0423"/><polyline points="-0.5693,-0.0391 0.7064,-0.0391"/><polyline points="-0.5693,-0.1205 0.7064,-0.1205"/><polyline points="-0.5693,-0.2019 0.7064,-0.2019"/><polyline points="-0.5693,-0.2833 0.7064,-0.2833"/><polyline points="-0.5693,-0.3647 0.7064,-0.3647"/><polyline points="-0.5693,-0.4461 0.7064,-0.4461"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.8172" width="0.0034" x="-0.5952" y="-0.4477"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.5693,0.4185
+-0.6088,-0.4611"/></g></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0425" text-anchor="end"><text x="-0.6394" y="0.3791">-1.0</text><text x="-0.6394" y="0.2977">-0.8</text><text x="-0.6394" y="0.2163">-0.6</text><text x="-0.6394" y="0.1349">-0.4</text><text x="-0.6394" y="0.0535">-0.2</text><text x="-0.6394" y="-0.0279"> 0.0</text><text x="-0.6394" y="-0.1093"> 0.2</text><text x="-0.6394" y="-0.1907"> 0.4</text><text x="-0.6394" y="-0.2721"> 0.6</text><text x="-0.6394" y="-0.3535"> 0.8</text><text x="-0.6394" y="-0.4349"> 1.0</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.5693,0.3679 0.7064,0.3679"/><polyline points="-0.5693,0.2865 0.7064,0.2865"/><polyline points="-0.5693,0.2051 0.7064,0.2051"/><polyline points="-0.5693,0.1237 0.7064,0.1237"/><polyline points="-0.5693,0.0423 0.7064,0.0423"/><polyline points="-0.5693,-0.0391 0.7064,-0.0391"/><polyline points="-0.5693,-0.1205 0.7064,-0.1205"/><polyline points="-0.5693,-0.2019 0.7064,-0.2019"/><polyline points="-0.5693,-0.2833 0.7064,-0.2833"/><polyline points="-0.5693,-0.3647 0.7064,-0.3647"/><polyline points="-0.5693,-0.4461 0.7064,-0.4461"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.0034" height="0.8172" x="-0.5952" y="-0.4477"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.5693,0.4185
 -0.5693,0.3885"/><polyline points="-0.3870,0.4185
 -0.3870,0.3885"/><polyline points="-0.2048,0.4185
 -0.2048,0.3885"/><polyline points="-0.0226,0.4185
@@ -41,4 +41,4 @@
 0.1597,0.3885"/><polyline points="0.3419,0.4185
 0.3419,0.3885"/><polyline points="0.5242,0.4185
 0.5242,0.3885"/><polyline points="0.7064,0.4185
-0.7064,0.3885"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0425" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.5693" y="0.4552">0</text><text x="-0.3870" y="0.4552">1</text><text x="-0.2048" y="0.4552">2</text><text x="-0.0226" y="0.4552">3</text><text x="0.1597" y="0.4552">4</text><text x="0.3419" y="0.4552">5</text><text x="0.5242" y="0.4552">6</text><text x="0.7064" y="0.4552">7</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.5693,0.3679 -0.5693,-0.4461"/><polyline points="-0.3870,0.3679 -0.3870,-0.4461"/><polyline points="-0.2048,0.3679 -0.2048,-0.4461"/><polyline points="-0.0226,0.3679 -0.0226,-0.4461"/><polyline points="0.1597,0.3679 0.1597,-0.4461"/><polyline points="0.3419,0.3679 0.3419,-0.4461"/><polyline points="0.5242,0.3679 0.5242,-0.4461"/><polyline points="0.7064,0.3679 0.7064,-0.4461"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0033" width="1.2791" x="-0.5710" y="0.3873"/></g></g></g><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="1.0" width="1.5000" x="-0.75" y="-0.5"/></g></g></g></svg>
+0.7064,0.3885"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0425" text-anchor="middle"><text x="-0.5693" y="0.4552">0</text><text x="-0.3870" y="0.4552">1</text><text x="-0.2048" y="0.4552">2</text><text x="-0.0226" y="0.4552">3</text><text x="0.1597" y="0.4552">4</text><text x="0.3419" y="0.4552">5</text><text x="0.5242" y="0.4552">6</text><text x="0.7064" y="0.4552">7</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.5693,0.3679 -0.5693,-0.4461"/><polyline points="-0.3870,0.3679 -0.3870,-0.4461"/><polyline points="-0.2048,0.3679 -0.2048,-0.4461"/><polyline points="-0.0226,0.3679 -0.0226,-0.4461"/><polyline points="0.1597,0.3679 0.1597,-0.4461"/><polyline points="0.3419,0.3679 0.3419,-0.4461"/><polyline points="0.5242,0.3679 0.5242,-0.4461"/><polyline points="0.7064,0.3679 0.7064,-0.4461"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="1.2791" height="0.0033" x="-0.5710" y="0.3873"/></g></g></g><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.5000" height="1.0" x="-0.75" y="-0.5"/></g></g></g></svg>
diff --git a/other/wheel.svg b/other/wheel.svg
--- a/other/wheel.svg
+++ b/other/wheel.svg
@@ -1,4 +1,4 @@
-<svg height="300" viewBox="-0.75 -0.5 1.5000 1.0" width="449" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><style>svg {
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="449" height="300" viewBox="-0.75 -0.5 1.5000 1.0"><style>svg {
   color-scheme: light dark;
 }
 {
@@ -22,7 +22,7 @@
   .legendBorder g {
     fill: rgb(5%, 5%, 5%);
   }
-}</style><g class="chart"><g class="dots"><g fill="rgb(2%, 73%, 80%)" fill-opacity="1.0" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.4441" cy="-0.0689" r="0.0400"/></g><g fill="rgb(2%, 29%, 48%)" fill-opacity="1.0" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.2305" cy="-0.0039" r="0.0400"/></g><g fill="rgb(66%, 7%, 55%)" fill-opacity="1.0" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.4990" cy="-0.0272" r="0.0400"/></g><g fill="rgb(96%, 60%, 92%)" fill-opacity="1.0" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.3022" cy="-0.0380" r="0.0400"/></g><g fill="rgb(100%, 71%, 35%)" fill-opacity="1.0" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.0407" cy="-0.4086" r="0.0400"/></g><g fill="rgb(73%, 34%, 1%)" fill-opacity="1.0" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="0.1944" cy="-0.3813" r="0.0400"/></g><g fill="rgb(21%, 29%, 7%)" fill-opacity="1.0" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.2667" cy="-0.2936" r="0.0400"/></g><g fill="rgb(53%, 51%, 28%)" fill-opacity="1.0" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" stroke-width="0.0030"><circle cx="-0.1645" cy="-0.3131" r="0.0400"/></g></g><g class="wheel"><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(39%, 39%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1095" y="-0.1761"/></g><g fill="rgb(41%, 38%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0785" y="-0.1761"/></g><g fill="rgb(41%, 38%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0787" y="-0.1783"/></g><g fill="rgb(41%, 38%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0794" y="-0.1806"/></g><g fill="rgb(41%, 38%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0806" y="-0.1828"/></g><g fill="rgb(41%, 38%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0823" y="-0.1849"/></g><g fill="rgb(41%, 38%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0844" y="-0.1868"/></g><g fill="rgb(41%, 38%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0869" y="-0.1886"/></g><g fill="rgb(41%, 38%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0897" y="-0.1902"/></g><g fill="rgb(41%, 38%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0928" y="-0.1915"/></g><g fill="rgb(41%, 38%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0963" y="-0.1926"/></g><g fill="rgb(40%, 39%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0999" y="-0.1935"/></g><g fill="rgb(40%, 39%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1036" y="-0.1940"/></g><g fill="rgb(40%, 39%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1075" y="-0.1943"/></g><g fill="rgb(40%, 39%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1114" y="-0.1943"/></g><g fill="rgb(39%, 39%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1153" y="-0.1940"/></g><g fill="rgb(39%, 39%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1190" y="-0.1935"/></g><g fill="rgb(39%, 39%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1227" y="-0.1926"/></g><g fill="rgb(38%, 39%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1261" y="-0.1915"/></g><g fill="rgb(38%, 39%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1292" y="-0.1902"/></g><g fill="rgb(38%, 39%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1321" y="-0.1886"/></g><g fill="rgb(38%, 40%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1345" y="-0.1868"/></g><g fill="rgb(37%, 40%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1366" y="-0.1849"/></g><g fill="rgb(37%, 40%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1383" y="-0.1828"/></g><g fill="rgb(37%, 40%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1395" y="-0.1806"/></g><g fill="rgb(37%, 40%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1402" y="-0.1783"/></g><g fill="rgb(37%, 40%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1405" y="-0.1761"/></g><g fill="rgb(37%, 40%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1402" y="-0.1738"/></g><g fill="rgb(36%, 40%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1395" y="-0.1715"/></g><g fill="rgb(36%, 40%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1383" y="-0.1693"/></g><g fill="rgb(36%, 40%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1366" y="-0.1672"/></g><g fill="rgb(37%, 40%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1345" y="-0.1653"/></g><g fill="rgb(37%, 39%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1321" y="-0.1635"/></g><g fill="rgb(37%, 39%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1292" y="-0.1620"/></g><g fill="rgb(37%, 39%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1261" y="-0.1606"/></g><g fill="rgb(37%, 39%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1227" y="-0.1595"/></g><g fill="rgb(37%, 39%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1190" y="-0.1587"/></g><g fill="rgb(38%, 39%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1153" y="-0.1581"/></g><g fill="rgb(38%, 39%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1114" y="-0.1578"/></g><g fill="rgb(38%, 39%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1075" y="-0.1578"/></g><g fill="rgb(38%, 39%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1036" y="-0.1581"/></g><g fill="rgb(39%, 39%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0999" y="-0.1587"/></g><g fill="rgb(39%, 38%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0963" y="-0.1595"/></g><g fill="rgb(39%, 38%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0928" y="-0.1606"/></g><g fill="rgb(40%, 38%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0897" y="-0.1620"/></g><g fill="rgb(40%, 38%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0869" y="-0.1635"/></g><g fill="rgb(40%, 38%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0844" y="-0.1653"/></g><g fill="rgb(40%, 38%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0823" y="-0.1672"/></g><g fill="rgb(41%, 38%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0806" y="-0.1693"/></g><g fill="rgb(41%, 38%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0794" y="-0.1715"/></g><g fill="rgb(41%, 38%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0787" y="-0.1738"/></g><g fill="rgb(43%, 37%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0475" y="-0.1761"/></g><g fill="rgb(43%, 37%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0480" y="-0.1806"/></g><g fill="rgb(43%, 37%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0494" y="-0.1852"/></g><g fill="rgb(43%, 37%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0518" y="-0.1895"/></g><g fill="rgb(43%, 37%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0551" y="-0.1937"/></g><g fill="rgb(43%, 37%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0593" y="-0.1976"/></g><g fill="rgb(43%, 38%, 35%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0643" y="-0.2011"/></g><g fill="rgb(43%, 38%, 35%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0699" y="-0.2042"/></g><g fill="rgb(43%, 38%, 35%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0762" y="-0.2069"/></g><g fill="rgb(42%, 38%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0831" y="-0.2092"/></g><g fill="rgb(42%, 38%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0903" y="-0.2109"/></g><g fill="rgb(41%, 38%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0978" y="-0.2120"/></g><g fill="rgb(41%, 39%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1056" y="-0.2126"/></g><g fill="rgb(40%, 39%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1133" y="-0.2126"/></g><g fill="rgb(40%, 39%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1211" y="-0.2120"/></g><g fill="rgb(39%, 39%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1286" y="-0.2109"/></g><g fill="rgb(39%, 40%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1359" y="-0.2092"/></g><g fill="rgb(38%, 40%, 35%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1427" y="-0.2069"/></g><g fill="rgb(37%, 40%, 35%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1490" y="-0.2042"/></g><g fill="rgb(37%, 40%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1546" y="-0.2011"/></g><g fill="rgb(36%, 40%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1596" y="-0.1976"/></g><g fill="rgb(36%, 40%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1638" y="-0.1937"/></g><g fill="rgb(35%, 40%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1671" y="-0.1895"/></g><g fill="rgb(35%, 40%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1695" y="-0.1852"/></g><g fill="rgb(35%, 40%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1710" y="-0.1806"/></g><g fill="rgb(34%, 40%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1714" y="-0.1761"/></g><g fill="rgb(34%, 40%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1710" y="-0.1715"/></g><g fill="rgb(34%, 40%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1695" y="-0.1670"/></g><g fill="rgb(34%, 40%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1671" y="-0.1626"/></g><g fill="rgb(34%, 40%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1638" y="-0.1584"/></g><g fill="rgb(34%, 40%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1596" y="-0.1546"/></g><g fill="rgb(34%, 40%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1546" y="-0.1510"/></g><g fill="rgb(35%, 40%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1490" y="-0.1479"/></g><g fill="rgb(35%, 40%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1427" y="-0.1452"/></g><g fill="rgb(35%, 39%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1359" y="-0.1430"/></g><g fill="rgb(36%, 39%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1286" y="-0.1413"/></g><g fill="rgb(36%, 39%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1211" y="-0.1401"/></g><g fill="rgb(37%, 39%, 44%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1133" y="-0.1395"/></g><g fill="rgb(37%, 39%, 44%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1056" y="-0.1395"/></g><g fill="rgb(38%, 38%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0978" y="-0.1401"/></g><g fill="rgb(39%, 38%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0903" y="-0.1413"/></g><g fill="rgb(39%, 38%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0831" y="-0.1430"/></g><g fill="rgb(40%, 38%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0762" y="-0.1452"/></g><g fill="rgb(40%, 38%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0699" y="-0.1479"/></g><g fill="rgb(41%, 38%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0643" y="-0.1510"/></g><g fill="rgb(41%, 37%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0593" y="-0.1546"/></g><g fill="rgb(42%, 37%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0551" y="-0.1584"/></g><g fill="rgb(42%, 37%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0518" y="-0.1626"/></g><g fill="rgb(42%, 37%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0494" y="-0.1670"/></g><g fill="rgb(43%, 37%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0480" y="-0.1715"/></g><g fill="rgb(45%, 36%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0165" y="-0.1761"/></g><g fill="rgb(45%, 36%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0172" y="-0.1829"/></g><g fill="rgb(45%, 36%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0194" y="-0.1897"/></g><g fill="rgb(45%, 36%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0230" y="-0.1963"/></g><g fill="rgb(45%, 37%, 35%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0280" y="-0.2025"/></g><g fill="rgb(45%, 37%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0342" y="-0.2083"/></g><g fill="rgb(45%, 37%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0417" y="-0.2136"/></g><g fill="rgb(45%, 37%, 33%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0502" y="-0.2183"/></g><g fill="rgb(44%, 37%, 32%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0596" y="-0.2224"/></g><g fill="rgb(44%, 38%, 32%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0699" y="-0.2257"/></g><g fill="rgb(43%, 38%, 32%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0807" y="-0.2283"/></g><g fill="rgb(43%, 38%, 31%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0920" y="-0.2300"/></g><g fill="rgb(42%, 39%, 31%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1036" y="-0.2308"/></g><g fill="rgb(41%, 39%, 31%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1153" y="-0.2308"/></g><g fill="rgb(40%, 39%, 32%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1269" y="-0.2300"/></g><g fill="rgb(39%, 40%, 32%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1382" y="-0.2283"/></g><g fill="rgb(39%, 40%, 32%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1490" y="-0.2257"/></g><g fill="rgb(38%, 40%, 33%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1593" y="-0.2224"/></g><g fill="rgb(37%, 40%, 33%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1687" y="-0.2183"/></g><g fill="rgb(36%, 41%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1772" y="-0.2136"/></g><g fill="rgb(35%, 41%, 35%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1847" y="-0.2083"/></g><g fill="rgb(34%, 41%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1909" y="-0.2025"/></g><g fill="rgb(33%, 41%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1959" y="-0.1963"/></g><g fill="rgb(33%, 41%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1995" y="-0.1897"/></g><g fill="rgb(32%, 41%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2017" y="-0.1829"/></g><g fill="rgb(32%, 41%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2024" y="-0.1761"/></g><g fill="rgb(31%, 41%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2017" y="-0.1692"/></g><g fill="rgb(31%, 41%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1995" y="-0.1624"/></g><g fill="rgb(31%, 41%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1959" y="-0.1559"/></g><g fill="rgb(31%, 41%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1909" y="-0.1496"/></g><g fill="rgb(31%, 41%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1847" y="-0.1438"/></g><g fill="rgb(32%, 41%, 44%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1772" y="-0.1385"/></g><g fill="rgb(32%, 40%, 44%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1687" y="-0.1338"/></g><g fill="rgb(33%, 40%, 45%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1593" y="-0.1297"/></g><g fill="rgb(33%, 40%, 45%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1490" y="-0.1264"/></g><g fill="rgb(34%, 39%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1382" y="-0.1239"/></g><g fill="rgb(35%, 39%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1269" y="-0.1221"/></g><g fill="rgb(36%, 39%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1153" y="-0.1213"/></g><g fill="rgb(37%, 39%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1036" y="-0.1213"/></g><g fill="rgb(38%, 38%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0920" y="-0.1221"/></g><g fill="rgb(38%, 38%, 45%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0807" y="-0.1239"/></g><g fill="rgb(39%, 38%, 45%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0699" y="-0.1264"/></g><g fill="rgb(40%, 37%, 45%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0596" y="-0.1297"/></g><g fill="rgb(41%, 37%, 44%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0502" y="-0.1338"/></g><g fill="rgb(42%, 37%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0417" y="-0.1385"/></g><g fill="rgb(42%, 37%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0342" y="-0.1438"/></g><g fill="rgb(43%, 37%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0280" y="-0.1496"/></g><g fill="rgb(44%, 36%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0230" y="-0.1559"/></g><g fill="rgb(44%, 36%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0194" y="-0.1624"/></g><g fill="rgb(45%, 36%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0172" y="-0.1692"/></g><g fill="rgb(47%, 35%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0145" y="-0.1761"/></g><g fill="rgb(47%, 35%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0135" y="-0.1852"/></g><g fill="rgb(47%, 35%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0106" y="-0.1943"/></g><g fill="rgb(47%, 35%, 35%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0058" y="-0.2030"/></g><g fill="rgb(47%, 36%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0008" y="-0.2113"/></g><g fill="rgb(47%, 36%, 33%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0092" y="-0.2191"/></g><g fill="rgb(47%, 36%, 32%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0191" y="-0.2261"/></g><g fill="rgb(46%, 36%, 31%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0304" y="-0.2324"/></g><g fill="rgb(46%, 37%, 30%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0430" y="-0.2378"/></g><g fill="rgb(45%, 37%, 30%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0567" y="-0.2423"/></g><g fill="rgb(45%, 38%, 29%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0711" y="-0.2457"/></g><g fill="rgb(44%, 38%, 29%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0862" y="-0.2479"/></g><g fill="rgb(43%, 38%, 29%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1017" y="-0.2491"/></g><g fill="rgb(42%, 39%, 29%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1172" y="-0.2491"/></g><g fill="rgb(41%, 39%, 29%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1327" y="-0.2479"/></g><g fill="rgb(40%, 40%, 29%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1478" y="-0.2457"/></g><g fill="rgb(38%, 40%, 30%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1622" y="-0.2423"/></g><g fill="rgb(37%, 40%, 31%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1759" y="-0.2378"/></g><g fill="rgb(36%, 41%, 31%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1885" y="-0.2324"/></g><g fill="rgb(35%, 41%, 32%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1998" y="-0.2261"/></g><g fill="rgb(34%, 41%, 33%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2098" y="-0.2191"/></g><g fill="rgb(32%, 42%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2181" y="-0.2113"/></g><g fill="rgb(31%, 42%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2247" y="-0.2030"/></g><g fill="rgb(30%, 42%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2295" y="-0.1943"/></g><g fill="rgb(30%, 42%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2325" y="-0.1852"/></g><g fill="rgb(29%, 42%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2334" y="-0.1761"/></g><g fill="rgb(28%, 42%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2325" y="-0.1669"/></g><g fill="rgb(28%, 42%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2295" y="-0.1579"/></g><g fill="rgb(28%, 42%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2247" y="-0.1491"/></g><g fill="rgb(28%, 42%, 44%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2181" y="-0.1408"/></g><g fill="rgb(29%, 41%, 45%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2098" y="-0.1330"/></g><g fill="rgb(29%, 41%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1998" y="-0.1260"/></g><g fill="rgb(30%, 41%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1885" y="-0.1197"/></g><g fill="rgb(31%, 40%, 47%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1759" y="-0.1143"/></g><g fill="rgb(31%, 40%, 47%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1622" y="-0.1098"/></g><g fill="rgb(33%, 40%, 48%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1478" y="-0.1065"/></g><g fill="rgb(34%, 39%, 48%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1327" y="-0.1042"/></g><g fill="rgb(35%, 39%, 48%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1172" y="-0.1030"/></g><g fill="rgb(36%, 38%, 48%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1017" y="-0.1030"/></g><g fill="rgb(37%, 38%, 48%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0862" y="-0.1042"/></g><g fill="rgb(38%, 38%, 48%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0711" y="-0.1065"/></g><g fill="rgb(39%, 37%, 47%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0567" y="-0.1098"/></g><g fill="rgb(41%, 37%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0430" y="-0.1143"/></g><g fill="rgb(42%, 37%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0304" y="-0.1197"/></g><g fill="rgb(43%, 36%, 45%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0191" y="-0.1260"/></g><g fill="rgb(44%, 36%, 44%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0092" y="-0.1330"/></g><g fill="rgb(44%, 36%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0008" y="-0.1408"/></g><g fill="rgb(45%, 36%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0058" y="-0.1491"/></g><g fill="rgb(46%, 35%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0106" y="-0.1579"/></g><g fill="rgb(46%, 35%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0135" y="-0.1669"/></g><g fill="rgb(48%, 34%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0455" y="-0.1761"/></g><g fill="rgb(49%, 34%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0443" y="-0.1875"/></g><g fill="rgb(49%, 34%, 35%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0407" y="-0.1988"/></g><g fill="rgb(49%, 35%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0346" y="-0.2097"/></g><g fill="rgb(49%, 35%, 33%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0264" y="-0.2201"/></g><g fill="rgb(49%, 35%, 31%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0159" y="-0.2298"/></g><g fill="rgb(49%, 35%, 30%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0035" y="-0.2387"/></g><g fill="rgb(48%, 36%, 29%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0107" y="-0.2465"/></g><g fill="rgb(48%, 36%, 28%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0264" y="-0.2533"/></g><g fill="rgb(47%, 37%, 27%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0435" y="-0.2588"/></g><g fill="rgb(46%, 37%, 26%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0616" y="-0.2630"/></g><g fill="rgb(45%, 38%, 26%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0804" y="-0.2659"/></g><g fill="rgb(44%, 38%, 26%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0997" y="-0.2673"/></g><g fill="rgb(43%, 39%, 26%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1192" y="-0.2673"/></g><g fill="rgb(41%, 39%, 26%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1385" y="-0.2659"/></g><g fill="rgb(40%, 40%, 27%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1573" y="-0.2630"/></g><g fill="rgb(38%, 40%, 27%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1754" y="-0.2588"/></g><g fill="rgb(37%, 41%, 28%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1925" y="-0.2533"/></g><g fill="rgb(35%, 41%, 29%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2082" y="-0.2465"/></g><g fill="rgb(34%, 42%, 31%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2224" y="-0.2387"/></g><g fill="rgb(32%, 42%, 32%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2348" y="-0.2298"/></g><g fill="rgb(31%, 42%, 33%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2453" y="-0.2201"/></g><g fill="rgb(29%, 42%, 35%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2536" y="-0.2097"/></g><g fill="rgb(28%, 43%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2596" y="-0.1988"/></g><g fill="rgb(27%, 43%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2632" y="-0.1875"/></g><g fill="rgb(26%, 43%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2644" y="-0.1761"/></g><g fill="rgb(25%, 43%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2632" y="-0.1646"/></g><g fill="rgb(25%, 43%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2596" y="-0.1533"/></g><g fill="rgb(25%, 42%, 44%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2536" y="-0.1424"/></g><g fill="rgb(25%, 42%, 45%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2453" y="-0.1320"/></g><g fill="rgb(25%, 42%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2348" y="-0.1223"/></g><g fill="rgb(26%, 41%, 47%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2224" y="-0.1134"/></g><g fill="rgb(27%, 41%, 48%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2082" y="-0.1056"/></g><g fill="rgb(28%, 41%, 49%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1925" y="-0.0988"/></g><g fill="rgb(29%, 40%, 49%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1754" y="-0.0933"/></g><g fill="rgb(31%, 40%, 50%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1573" y="-0.0891"/></g><g fill="rgb(32%, 39%, 50%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1385" y="-0.0862"/></g><g fill="rgb(34%, 39%, 50%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1192" y="-0.0848"/></g><g fill="rgb(35%, 38%, 50%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0997" y="-0.0848"/></g><g fill="rgb(37%, 38%, 50%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0804" y="-0.0862"/></g><g fill="rgb(38%, 37%, 50%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0616" y="-0.0891"/></g><g fill="rgb(40%, 37%, 49%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0435" y="-0.0933"/></g><g fill="rgb(41%, 36%, 48%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0264" y="-0.0988"/></g><g fill="rgb(42%, 36%, 47%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0107" y="-0.1056"/></g><g fill="rgb(43%, 36%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0035" y="-0.1134"/></g><g fill="rgb(45%, 35%, 45%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0159" y="-0.1223"/></g><g fill="rgb(46%, 35%, 44%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0264" y="-0.1320"/></g><g fill="rgb(47%, 35%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0346" y="-0.1424"/></g><g fill="rgb(47%, 34%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0407" y="-0.1533"/></g><g fill="rgb(48%, 34%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0443" y="-0.1646"/></g><g fill="rgb(50%, 33%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0765" y="-0.1761"/></g><g fill="rgb(51%, 33%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0751" y="-0.1898"/></g><g fill="rgb(51%, 33%, 35%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0707" y="-0.2034"/></g><g fill="rgb(51%, 34%, 33%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0635" y="-0.2165"/></g><g fill="rgb(51%, 34%, 31%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0535" y="-0.2289"/></g><g fill="rgb(51%, 34%, 30%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0410" y="-0.2406"/></g><g fill="rgb(50%, 35%, 28%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0261" y="-0.2512"/></g><g fill="rgb(50%, 35%, 27%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0091" y="-0.2606"/></g><g fill="rgb(49%, 36%, 25%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0098" y="-0.2687"/></g><g fill="rgb(48%, 36%, 24%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0303" y="-0.2754"/></g><g fill="rgb(47%, 37%, 24%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0520" y="-0.2804"/></g><g fill="rgb(46%, 37%, 23%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0746" y="-0.2839"/></g><g fill="rgb(45%, 38%, 23%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0978" y="-0.2856"/></g><g fill="rgb(43%, 39%, 23%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1211" y="-0.2856"/></g><g fill="rgb(42%, 39%, 23%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1443" y="-0.2839"/></g><g fill="rgb(40%, 40%, 24%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1669" y="-0.2804"/></g><g fill="rgb(38%, 41%, 25%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1886" y="-0.2754"/></g><g fill="rgb(36%, 41%, 26%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2091" y="-0.2687"/></g><g fill="rgb(35%, 42%, 27%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2280" y="-0.2606"/></g><g fill="rgb(33%, 42%, 29%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2450" y="-0.2512"/></g><g fill="rgb(31%, 43%, 30%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2599" y="-0.2406"/></g><g fill="rgb(29%, 43%, 32%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2724" y="-0.2289"/></g><g fill="rgb(27%, 43%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2824" y="-0.2165"/></g><g fill="rgb(25%, 43%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2896" y="-0.2034"/></g><g fill="rgb(24%, 43%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2940" y="-0.1898"/></g><g fill="rgb(22%, 43%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2954" y="-0.1761"/></g><g fill="rgb(21%, 43%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2940" y="-0.1623"/></g><g fill="rgb(21%, 43%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2896" y="-0.1488"/></g><g fill="rgb(21%, 43%, 45%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2824" y="-0.1357"/></g><g fill="rgb(21%, 43%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2724" y="-0.1232"/></g><g fill="rgb(22%, 42%, 47%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2599" y="-0.1115"/></g><g fill="rgb(23%, 42%, 49%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2450" y="-0.1009"/></g><g fill="rgb(24%, 41%, 50%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2280" y="-0.0915"/></g><g fill="rgb(25%, 41%, 51%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2091" y="-0.0834"/></g><g fill="rgb(27%, 40%, 52%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1886" y="-0.0767"/></g><g fill="rgb(29%, 40%, 52%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1669" y="-0.0717"/></g><g fill="rgb(31%, 39%, 52%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1443" y="-0.0682"/></g><g fill="rgb(33%, 39%, 53%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1211" y="-0.0665"/></g><g fill="rgb(35%, 38%, 52%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0978" y="-0.0665"/></g><g fill="rgb(36%, 37%, 52%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0746" y="-0.0682"/></g><g fill="rgb(38%, 37%, 52%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0520" y="-0.0717"/></g><g fill="rgb(40%, 36%, 51%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0303" y="-0.0767"/></g><g fill="rgb(41%, 36%, 50%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0098" y="-0.0834"/></g><g fill="rgb(43%, 35%, 49%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0091" y="-0.0915"/></g><g fill="rgb(44%, 35%, 48%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0261" y="-0.1009"/></g><g fill="rgb(46%, 34%, 47%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0410" y="-0.1115"/></g><g fill="rgb(47%, 34%, 45%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0535" y="-0.1232"/></g><g fill="rgb(48%, 34%, 44%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0635" y="-0.1357"/></g><g fill="rgb(49%, 33%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0707" y="-0.1488"/></g><g fill="rgb(50%, 33%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0751" y="-0.1623"/></g><g fill="rgb(52%, 32%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1075" y="-0.1761"/></g><g fill="rgb(52%, 32%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1058" y="-0.1921"/></g><g fill="rgb(53%, 32%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1007" y="-0.2079"/></g><g fill="rgb(53%, 32%, 32%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0923" y="-0.2232"/></g><g fill="rgb(53%, 33%, 30%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0807" y="-0.2377"/></g><g fill="rgb(53%, 33%, 28%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0661" y="-0.2513"/></g><g fill="rgb(52%, 34%, 26%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0487" y="-0.2637"/></g><g fill="rgb(52%, 34%, 24%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0288" y="-0.2747"/></g><g fill="rgb(51%, 35%, 23%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0068" y="-0.2842"/></g><g fill="rgb(50%, 36%, 21%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0171" y="-0.2919"/></g><g fill="rgb(49%, 36%, 20%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0424" y="-0.2978"/></g><g fill="rgb(47%, 37%, 20%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0688" y="-0.3018"/></g><g fill="rgb(46%, 38%, 19%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0958" y="-0.3039"/></g><g fill="rgb(44%, 39%, 19%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1231" y="-0.3039"/></g><g fill="rgb(42%, 39%, 20%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1501" y="-0.3018"/></g><g fill="rgb(40%, 40%, 21%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1765" y="-0.2978"/></g><g fill="rgb(38%, 41%, 22%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2018" y="-0.2919"/></g><g fill="rgb(36%, 41%, 23%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2257" y="-0.2842"/></g><g fill="rgb(34%, 42%, 25%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2478" y="-0.2747"/></g><g fill="rgb(31%, 43%, 27%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2676" y="-0.2637"/></g><g fill="rgb(29%, 43%, 29%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2850" y="-0.2513"/></g><g fill="rgb(27%, 43%, 31%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2996" y="-0.2377"/></g><g fill="rgb(24%, 44%, 33%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3112" y="-0.2232"/></g><g fill="rgb(22%, 44%, 35%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3196" y="-0.2079"/></g><g fill="rgb(20%, 44%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3247" y="-0.1921"/></g><g fill="rgb(18%, 44%, 39%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3264" y="-0.1761"/></g><g fill="rgb(17%, 44%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3247" y="-0.1600"/></g><g fill="rgb(16%, 44%, 44%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3196" y="-0.1442"/></g><g fill="rgb(16%, 44%, 45%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3112" y="-0.1289"/></g><g fill="rgb(16%, 43%, 47%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2996" y="-0.1144"/></g><g fill="rgb(17%, 43%, 49%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2850" y="-0.1008"/></g><g fill="rgb(19%, 42%, 50%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2676" y="-0.0884"/></g><g fill="rgb(21%, 42%, 52%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2478" y="-0.0774"/></g><g fill="rgb(23%, 41%, 53%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2257" y="-0.0679"/></g><g fill="rgb(25%, 41%, 54%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2018" y="-0.0602"/></g><g fill="rgb(27%, 40%, 54%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1765" y="-0.0543"/></g><g fill="rgb(29%, 39%, 55%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1501" y="-0.0503"/></g><g fill="rgb(32%, 38%, 55%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1231" y="-0.0483"/></g><g fill="rgb(34%, 38%, 55%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0958" y="-0.0483"/></g><g fill="rgb(36%, 37%, 54%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0688" y="-0.0503"/></g><g fill="rgb(38%, 36%, 54%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0424" y="-0.0543"/></g><g fill="rgb(40%, 36%, 53%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0171" y="-0.0602"/></g><g fill="rgb(42%, 35%, 52%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0068" y="-0.0679"/></g><g fill="rgb(44%, 35%, 51%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0288" y="-0.0774"/></g><g fill="rgb(45%, 34%, 49%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0487" y="-0.0884"/></g><g fill="rgb(47%, 33%, 48%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0661" y="-0.1008"/></g><g fill="rgb(48%, 33%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0807" y="-0.1144"/></g><g fill="rgb(49%, 33%, 44%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0923" y="-0.1289"/></g><g fill="rgb(50%, 32%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1007" y="-0.1442"/></g><g fill="rgb(51%, 32%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1058" y="-0.1600"/></g><g fill="rgb(53%, 31%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1385" y="-0.1761"/></g><g fill="rgb(54%, 31%, 36%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1366" y="-0.1944"/></g><g fill="rgb(54%, 31%, 33%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1307" y="-0.2125"/></g><g fill="rgb(55%, 31%, 31%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1211" y="-0.2299"/></g><g fill="rgb(55%, 32%, 28%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1078" y="-0.2466"/></g><g fill="rgb(54%, 32%, 26%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0912" y="-0.2621"/></g><g fill="rgb(54%, 33%, 24%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0713" y="-0.2762"/></g><g fill="rgb(53%, 33%, 22%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0486" y="-0.2888"/></g><g fill="rgb(52%, 34%, 20%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0234" y="-0.2996"/></g><g fill="rgb(51%, 35%, 18%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0039" y="-0.3085"/></g><g fill="rgb(50%, 36%, 17%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0328" y="-0.3152"/></g><g fill="rgb(48%, 37%, 16%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0630" y="-0.3198"/></g><g fill="rgb(47%, 38%, 15%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0939" y="-0.3221"/></g><g fill="rgb(45%, 38%, 16%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1250" y="-0.3221"/></g><g fill="rgb(43%, 39%, 16%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1559" y="-0.3198"/></g><g fill="rgb(41%, 40%, 17%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1861" y="-0.3152"/></g><g fill="rgb(38%, 41%, 19%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2150" y="-0.3085"/></g><g fill="rgb(36%, 42%, 21%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2423" y="-0.2996"/></g><g fill="rgb(33%, 42%, 23%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2675" y="-0.2888"/></g><g fill="rgb(30%, 43%, 25%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2902" y="-0.2762"/></g><g fill="rgb(27%, 44%, 27%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3101" y="-0.2621"/></g><g fill="rgb(24%, 44%, 30%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3268" y="-0.2466"/></g><g fill="rgb(21%, 44%, 32%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3400" y="-0.2299"/></g><g fill="rgb(18%, 45%, 35%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3496" y="-0.2125"/></g><g fill="rgb(15%, 45%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3555" y="-0.1944"/></g><g fill="rgb(12%, 45%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3574" y="-0.1761"/></g><g fill="rgb(10%, 45%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3555" y="-0.1577"/></g><g fill="rgb(8%, 44%, 44%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3496" y="-0.1397"/></g><g fill="rgb(8%, 44%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3400" y="-0.1222"/></g><g fill="rgb(9%, 44%, 48%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3268" y="-0.1056"/></g><g fill="rgb(11%, 43%, 50%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3101" y="-0.0900"/></g><g fill="rgb(14%, 43%, 52%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2902" y="-0.0759"/></g><g fill="rgb(16%, 42%, 53%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2675" y="-0.0633"/></g><g fill="rgb(19%, 41%, 55%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2423" y="-0.0525"/></g><g fill="rgb(22%, 41%, 56%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2150" y="-0.0436"/></g><g fill="rgb(25%, 40%, 56%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1861" y="-0.0369"/></g><g fill="rgb(28%, 39%, 57%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1559" y="-0.0323"/></g><g fill="rgb(31%, 38%, 57%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1250" y="-0.0300"/></g><g fill="rgb(33%, 38%, 57%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0939" y="-0.0300"/></g><g fill="rgb(36%, 37%, 56%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0630" y="-0.0323"/></g><g fill="rgb(38%, 36%, 56%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0328" y="-0.0369"/></g><g fill="rgb(40%, 35%, 55%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0039" y="-0.0436"/></g><g fill="rgb(42%, 34%, 54%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0234" y="-0.0525"/></g><g fill="rgb(44%, 34%, 52%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0486" y="-0.0633"/></g><g fill="rgb(46%, 33%, 51%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0713" y="-0.0759"/></g><g fill="rgb(48%, 33%, 49%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0912" y="-0.0900"/></g><g fill="rgb(49%, 32%, 47%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1078" y="-0.1056"/></g><g fill="rgb(51%, 32%, 45%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1211" y="-0.1222"/></g><g fill="rgb(52%, 31%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1307" y="-0.1397"/></g><g fill="rgb(53%, 31%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1366" y="-0.1577"/></g><g fill="rgb(55%, 30%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1695" y="-0.1761"/></g><g fill="rgb(56%, 30%, 35%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1673" y="-0.1967"/></g><g fill="rgb(56%, 30%, 33%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1607" y="-0.2170"/></g><g fill="rgb(56%, 30%, 30%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1499" y="-0.2367"/></g><g fill="rgb(56%, 31%, 27%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1350" y="-0.2554"/></g><g fill="rgb(56%, 31%, 24%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1162" y="-0.2728"/></g><g fill="rgb(56%, 32%, 22%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0939" y="-0.2888"/></g><g fill="rgb(55%, 32%, 19%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0684" y="-0.3029"/></g><g fill="rgb(54%, 33%, 17%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0400" y="-0.3151"/></g><g fill="rgb(53%, 34%, 15%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0093" y="-0.3250"/></g><g fill="rgb(51%, 35%, 13%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0233" y="-0.3326"/></g><g fill="rgb(50%, 36%, 11%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0572" y="-0.3378"/></g><g fill="rgb(48%, 37%, 11%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0919" y="-0.3404"/></g><g fill="rgb(46%, 38%, 11%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1270" y="-0.3404"/></g><g fill="rgb(43%, 39%, 12%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1617" y="-0.3378"/></g><g fill="rgb(41%, 40%, 13%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1957" y="-0.3326"/></g><g fill="rgb(38%, 41%, 15%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2282" y="-0.3250"/></g><g fill="rgb(35%, 42%, 17%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2589" y="-0.3151"/></g><g fill="rgb(32%, 43%, 20%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2873" y="-0.3029"/></g><g fill="rgb(29%, 44%, 23%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3128" y="-0.2888"/></g><g fill="rgb(26%, 44%, 26%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3351" y="-0.2728"/></g><g fill="rgb(22%, 45%, 28%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3539" y="-0.2554"/></g><g fill="rgb(18%, 45%, 31%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3688" y="-0.2367"/></g><g fill="rgb(14%, 45%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3797" y="-0.2170"/></g><g fill="rgb(8%, 45%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3862" y="-0.1967"/></g><g fill="rgb(1%, 45%, 40%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3884" y="-0.1761"/></g><g fill="rgb(5%, 43%, 54%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3128" y="-0.0634"/></g><g fill="rgb(11%, 42%, 55%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2873" y="-0.0492"/></g><g fill="rgb(15%, 42%, 57%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2589" y="-0.0370"/></g><g fill="rgb(19%, 41%, 58%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2282" y="-0.0271"/></g><g fill="rgb(23%, 40%, 58%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1957" y="-0.0195"/></g><g fill="rgb(26%, 39%, 59%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1617" y="-0.0143"/></g><g fill="rgb(30%, 38%, 59%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1270" y="-0.0117"/></g><g fill="rgb(33%, 37%, 59%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0919" y="-0.0117"/></g><g fill="rgb(35%, 36%, 59%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0572" y="-0.0143"/></g><g fill="rgb(38%, 35%, 58%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0233" y="-0.0195"/></g><g fill="rgb(40%, 35%, 57%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0093" y="-0.0271"/></g><g fill="rgb(43%, 34%, 56%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0400" y="-0.0370"/></g><g fill="rgb(45%, 33%, 54%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0684" y="-0.0492"/></g><g fill="rgb(47%, 32%, 52%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0939" y="-0.0634"/></g><g fill="rgb(49%, 32%, 50%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1162" y="-0.0793"/></g><g fill="rgb(50%, 31%, 48%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1350" y="-0.0967"/></g><g fill="rgb(52%, 31%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1499" y="-0.1154"/></g><g fill="rgb(53%, 30%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1607" y="-0.1351"/></g><g fill="rgb(54%, 30%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1673" y="-0.1554"/></g><g fill="rgb(57%, 29%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2005" y="-0.1761"/></g><g fill="rgb(57%, 29%, 35%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1981" y="-0.1990"/></g><g fill="rgb(58%, 29%, 32%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1908" y="-0.2216"/></g><g fill="rgb(58%, 29%, 29%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1787" y="-0.2434"/></g><g fill="rgb(58%, 29%, 26%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1622" y="-0.2642"/></g><g fill="rgb(58%, 30%, 22%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1413" y="-0.2836"/></g><g fill="rgb(57%, 31%, 19%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1165" y="-0.3013"/></g><g fill="rgb(56%, 32%, 16%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0881" y="-0.3170"/></g><g fill="rgb(55%, 33%, 13%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0566" y="-0.3305"/></g><g fill="rgb(54%, 34%, 10%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0225" y="-0.3416"/></g><g fill="rgb(53%, 35%, 7%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0137" y="-0.3500"/></g><g fill="rgb(51%, 36%, 4%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0514" y="-0.3558"/></g><g fill="rgb(49%, 37%, 3%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0900" y="-0.3586"/></g><g fill="rgb(46%, 38%, 3%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1289" y="-0.3586"/></g><g fill="rgb(44%, 39%, 5%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1675" y="-0.3558"/></g><g fill="rgb(41%, 40%, 8%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2052" y="-0.3500"/></g><g fill="rgb(38%, 41%, 11%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2414" y="-0.3416"/></g><g fill="rgb(35%, 42%, 14%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2755" y="-0.3305"/></g><g fill="rgb(32%, 43%, 17%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3070" y="-0.3170"/></g><g fill="rgb(28%, 44%, 20%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3354" y="-0.3013"/></g><g fill="rgb(24%, 45%, 24%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3602" y="-0.2836"/></g><g fill="rgb(19%, 45%, 27%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3811" y="-0.2642"/></g><g fill="rgb(14%, 46%, 30%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3977" y="-0.2434"/></g><g fill="rgb(6%, 46%, 33%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.4097" y="-0.2216"/></g><g fill="rgb(0%, 43%, 57%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3070" y="-0.0351"/></g><g fill="rgb(10%, 42%, 58%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2755" y="-0.0216"/></g><g fill="rgb(16%, 41%, 60%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2414" y="-0.0105"/></g><g fill="rgb(21%, 40%, 61%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2052" y="-0.0021"/></g><g fill="rgb(25%, 39%, 61%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1675" y="0.0036"/></g><g fill="rgb(29%, 38%, 61%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1289" y="0.0065"/></g><g fill="rgb(32%, 37%, 61%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0900" y="0.0065"/></g><g fill="rgb(35%, 36%, 61%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0514" y="0.0036"/></g><g fill="rgb(38%, 35%, 60%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0137" y="-0.0021"/></g><g fill="rgb(41%, 34%, 59%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0225" y="-0.0105"/></g><g fill="rgb(43%, 33%, 57%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0566" y="-0.0216"/></g><g fill="rgb(46%, 32%, 56%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0881" y="-0.0351"/></g><g fill="rgb(48%, 31%, 54%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1165" y="-0.0508"/></g><g fill="rgb(50%, 31%, 51%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1413" y="-0.0685"/></g><g fill="rgb(52%, 30%, 49%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1622" y="-0.0879"/></g><g fill="rgb(53%, 29%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1787" y="-0.1087"/></g><g fill="rgb(55%, 29%, 44%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1908" y="-0.1306"/></g><g fill="rgb(56%, 29%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1981" y="-0.1531"/></g><g fill="rgb(58%, 27%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2315" y="-0.1761"/></g><g fill="rgb(59%, 27%, 35%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2288" y="-0.2013"/></g><g fill="rgb(59%, 27%, 31%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2208" y="-0.2261"/></g><g fill="rgb(60%, 28%, 28%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2076" y="-0.2501"/></g><g fill="rgb(60%, 28%, 24%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1893" y="-0.2730"/></g><g fill="rgb(59%, 29%, 21%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1664" y="-0.2943"/></g><g fill="rgb(59%, 30%, 17%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1391" y="-0.3138"/></g><g fill="rgb(58%, 31%, 13%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1079" y="-0.3311"/></g><g fill="rgb(57%, 32%, 8%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0732" y="-0.3460"/></g><g fill="rgb(55%, 33%, 2%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0357" y="-0.3581"/></g><g fill="rgb(38%, 42%, 4%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2546" y="-0.3581"/></g><g fill="rgb(35%, 43%, 9%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2921" y="-0.3460"/></g><g fill="rgb(31%, 44%, 14%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3268" y="-0.3311"/></g><g fill="rgb(26%, 44%, 18%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3580" y="-0.3138"/></g><g fill="rgb(22%, 45%, 22%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3853" y="-0.2943"/></g><g fill="rgb(16%, 46%, 26%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.4082" y="-0.2730"/></g><g fill="rgb(7%, 46%, 29%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.4265" y="-0.2501"/></g><g fill="rgb(0%, 42%, 60%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2921" y="-0.0062"/></g><g fill="rgb(12%, 41%, 62%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2546" y="0.0060"/></g><g fill="rgb(18%, 40%, 63%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2148" y="0.0153"/></g><g fill="rgb(23%, 39%, 63%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1733" y="0.0216"/></g><g fill="rgb(27%, 38%, 63%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1309" y="0.0248"/></g><g fill="rgb(31%, 36%, 63%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0880" y="0.0248"/></g><g fill="rgb(35%, 35%, 63%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0456" y="0.0216"/></g><g fill="rgb(38%, 34%, 62%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0041" y="0.0153"/></g><g fill="rgb(41%, 33%, 61%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0357" y="0.0060"/></g><g fill="rgb(44%, 32%, 59%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0732" y="-0.0062"/></g><g fill="rgb(46%, 31%, 57%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1079" y="-0.0210"/></g><g fill="rgb(49%, 30%, 55%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1391" y="-0.0383"/></g><g fill="rgb(51%, 30%, 53%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1664" y="-0.0578"/></g><g fill="rgb(53%, 29%, 50%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1893" y="-0.0791"/></g><g fill="rgb(54%, 28%, 47%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2076" y="-0.1020"/></g><g fill="rgb(56%, 28%, 44%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2208" y="-0.1260"/></g><g fill="rgb(57%, 27%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2288" y="-0.1508"/></g><g fill="rgb(60%, 26%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2625" y="-0.1761"/></g><g fill="rgb(60%, 26%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2596" y="-0.2036"/></g><g fill="rgb(61%, 26%, 30%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2508" y="-0.2307"/></g><g fill="rgb(61%, 26%, 27%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2364" y="-0.2569"/></g><g fill="rgb(61%, 27%, 23%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2165" y="-0.2818"/></g><g fill="rgb(61%, 27%, 18%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1915" y="-0.3051"/></g><g fill="rgb(60%, 28%, 14%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1617" y="-0.3263"/></g><g fill="rgb(59%, 29%, 8%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1276" y="-0.3452"/></g><g fill="rgb(58%, 31%, 0%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0898" y="-0.3614"/></g><g fill="rgb(34%, 43%, 2%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3088" y="-0.3614"/></g><g fill="rgb(30%, 44%, 10%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3465" y="-0.3452"/></g><g fill="rgb(25%, 45%, 15%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3806" y="-0.3263"/></g><g fill="rgb(19%, 46%, 20%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.4104" y="-0.3051"/></g><g fill="rgb(11%, 46%, 24%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.4354" y="-0.2818"/></g><g fill="rgb(6%, 41%, 64%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2678" y="0.0226"/></g><g fill="rgb(15%, 40%, 65%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2244" y="0.0327"/></g><g fill="rgb(21%, 38%, 65%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1792" y="0.0396"/></g><g fill="rgb(26%, 37%, 66%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1328" y="0.0430"/></g><g fill="rgb(31%, 36%, 65%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0861" y="0.0430"/></g><g fill="rgb(35%, 35%, 65%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0398" y="0.0396"/></g><g fill="rgb(38%, 34%, 64%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0055" y="0.0327"/></g><g fill="rgb(41%, 32%, 63%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0489" y="0.0226"/></g><g fill="rgb(44%, 31%, 61%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0898" y="0.0093"/></g><g fill="rgb(47%, 30%, 59%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1276" y="-0.0069"/></g><g fill="rgb(49%, 29%, 56%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1617" y="-0.0258"/></g><g fill="rgb(52%, 28%, 54%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1915" y="-0.0470"/></g><g fill="rgb(54%, 28%, 51%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2165" y="-0.0703"/></g><g fill="rgb(56%, 27%, 48%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2364" y="-0.0952"/></g><g fill="rgb(57%, 26%, 45%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2508" y="-0.1215"/></g><g fill="rgb(58%, 26%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2596" y="-0.1485"/></g><g fill="rgb(61%, 24%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2935" y="-0.1761"/></g><g fill="rgb(62%, 24%, 34%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2903" y="-0.2059"/></g><g fill="rgb(62%, 24%, 30%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2808" y="-0.2352"/></g><g fill="rgb(63%, 25%, 25%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2652" y="-0.2636"/></g><g fill="rgb(63%, 25%, 21%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2436" y="-0.2906"/></g><g fill="rgb(62%, 26%, 16%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2165" y="-0.3158"/></g><g fill="rgb(62%, 27%, 10%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1843" y="-0.3389"/></g><g fill="rgb(61%, 28%, 1%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1474" y="-0.3593"/></g><g fill="rgb(29%, 44%, 3%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.3663" y="-0.3593"/></g><g fill="rgb(24%, 45%, 12%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.4032" y="-0.3389"/></g><g fill="rgb(17%, 46%, 18%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.4354" y="-0.3158"/></g><g fill="rgb(4%, 47%, 23%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.4626" y="-0.2906"/></g><g fill="rgb(12%, 40%, 67%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2340" y="0.0501"/></g><g fill="rgb(20%, 38%, 67%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1850" y="0.0575"/></g><g fill="rgb(25%, 37%, 68%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1348" y="0.0613"/></g><g fill="rgb(30%, 36%, 68%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0842" y="0.0613"/></g><g fill="rgb(34%, 34%, 67%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0340" y="0.0575"/></g><g fill="rgb(38%, 33%, 66%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0151" y="0.0501"/></g><g fill="rgb(42%, 32%, 64%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0621" y="0.0391"/></g><g fill="rgb(45%, 30%, 63%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1065" y="0.0247"/></g><g fill="rgb(48%, 29%, 60%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1474" y="0.0072"/></g><g fill="rgb(50%, 28%, 58%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1843" y="-0.0133"/></g><g fill="rgb(53%, 27%, 55%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2165" y="-0.0363"/></g><g fill="rgb(55%, 26%, 52%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2436" y="-0.0615"/></g><g fill="rgb(57%, 26%, 49%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2652" y="-0.0885"/></g><g fill="rgb(58%, 25%, 45%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2808" y="-0.1169"/></g><g fill="rgb(60%, 24%, 41%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2903" y="-0.1463"/></g><g fill="rgb(62%, 22%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3245" y="-0.1761"/></g><g fill="rgb(63%, 22%, 33%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3211" y="-0.2082"/></g><g fill="rgb(64%, 22%, 29%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3109" y="-0.2397"/></g><g fill="rgb(64%, 23%, 24%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2940" y="-0.2703"/></g><g fill="rgb(64%, 23%, 19%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2708" y="-0.2994"/></g><g fill="rgb(64%, 24%, 14%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2416" y="-0.3266"/></g><g fill="rgb(63%, 26%, 6%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2069" y="-0.3514"/></g><g fill="rgb(22%, 46%, 8%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.4258" y="-0.3514"/></g><g fill="rgb(13%, 46%, 15%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.4605" y="-0.3266"/></g><g fill="rgb(7%, 39%, 69%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2436" y="0.0675"/></g><g fill="rgb(18%, 38%, 70%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1908" y="0.0755"/></g><g fill="rgb(24%, 36%, 70%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1367" y="0.0795"/></g><g fill="rgb(30%, 35%, 70%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0822" y="0.0795"/></g><g fill="rgb(34%, 34%, 69%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0281" y="0.0755"/></g><g fill="rgb(38%, 32%, 68%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0246" y="0.0675"/></g><g fill="rgb(42%, 31%, 66%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0753" y="0.0557"/></g><g fill="rgb(45%, 30%, 64%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1231" y="0.0402"/></g><g fill="rgb(48%, 28%, 62%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1671" y="0.0213"/></g><g fill="rgb(51%, 27%, 59%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2069" y="-0.0007"/></g><g fill="rgb(54%, 26%, 56%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2416" y="-0.0255"/></g><g fill="rgb(56%, 25%, 53%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2708" y="-0.0527"/></g><g fill="rgb(58%, 24%, 49%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2940" y="-0.0818"/></g><g fill="rgb(60%, 23%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3109" y="-0.1124"/></g><g fill="rgb(61%, 23%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3211" y="-0.1440"/></g><g fill="rgb(64%, 21%, 38%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3555" y="-0.1761"/></g><g fill="rgb(65%, 20%, 33%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3518" y="-0.2104"/></g><g fill="rgb(65%, 20%, 28%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3409" y="-0.2443"/></g><g fill="rgb(66%, 21%, 23%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3228" y="-0.2771"/></g><g fill="rgb(66%, 22%, 17%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2980" y="-0.3083"/></g><g fill="rgb(65%, 23%, 11%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2667" y="-0.3373"/></g><g fill="rgb(20%, 46%, 1%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.4484" y="-0.3639"/></g><g fill="rgb(9%, 47%, 13%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.4856" y="-0.3373"/></g><g fill="rgb(16%, 38%, 72%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1966" y="0.0935"/></g><g fill="rgb(23%, 36%, 72%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1387" y="0.0978"/></g><g fill="rgb(29%, 34%, 72%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0803" y="0.0978"/></g><g fill="rgb(34%, 33%, 71%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0223" y="0.0935"/></g><g fill="rgb(38%, 31%, 70%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0342" y="0.0849"/></g><g fill="rgb(42%, 30%, 68%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0885" y="0.0722"/></g><g fill="rgb(46%, 29%, 66%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1397" y="0.0556"/></g><g fill="rgb(49%, 27%, 64%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1869" y="0.0354"/></g><g fill="rgb(52%, 26%, 61%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2295" y="0.0118"/></g><g fill="rgb(55%, 25%, 57%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2667" y="-0.0148"/></g><g fill="rgb(57%, 24%, 54%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2980" y="-0.0439"/></g><g fill="rgb(59%, 23%, 50%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3228" y="-0.0750"/></g><g fill="rgb(61%, 22%, 46%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3409" y="-0.1078"/></g><g fill="rgb(63%, 21%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3518" y="-0.1417"/></g><g fill="rgb(65%, 18%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3865" y="-0.1761"/></g><g fill="rgb(66%, 18%, 33%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3826" y="-0.2127"/></g><g fill="rgb(67%, 18%, 27%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3709" y="-0.2488"/></g><g fill="rgb(67%, 19%, 22%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3517" y="-0.2838"/></g><g fill="rgb(67%, 20%, 16%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3251" y="-0.3171"/></g><g fill="rgb(67%, 21%, 7%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2918" y="-0.3481"/></g><g fill="rgb(2%, 47%, 9%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.5107" y="-0.3481"/></g><g fill="rgb(13%, 37%, 74%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2024" y="0.1115"/></g><g fill="rgb(22%, 35%, 74%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1406" y="0.1161"/></g><g fill="rgb(29%, 34%, 74%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0783" y="0.1161"/></g><g fill="rgb(34%, 32%, 73%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0165" y="0.1115"/></g><g fill="rgb(38%, 30%, 72%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0438" y="0.1023"/></g><g fill="rgb(42%, 29%, 70%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1017" y="0.0888"/></g><g fill="rgb(46%, 27%, 68%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1563" y="0.0711"/></g><g fill="rgb(50%, 26%, 65%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2067" y="0.0495"/></g><g fill="rgb(53%, 25%, 62%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2521" y="0.0243"/></g><g fill="rgb(55%, 23%, 59%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2918" y="-0.0040"/></g><g fill="rgb(58%, 22%, 55%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3251" y="-0.0350"/></g><g fill="rgb(60%, 21%, 51%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3517" y="-0.0683"/></g><g fill="rgb(62%, 20%, 47%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3709" y="-0.1033"/></g><g fill="rgb(64%, 19%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3826" y="-0.1394"/></g><g fill="rgb(67%, 16%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4175" y="-0.1761"/></g><g fill="rgb(68%, 16%, 32%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4133" y="-0.2150"/></g><g fill="rgb(68%, 16%, 27%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4009" y="-0.2534"/></g><g fill="rgb(69%, 16%, 21%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3805" y="-0.2905"/></g><g fill="rgb(69%, 17%, 13%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3523" y="-0.3259"/></g><g fill="rgb(68%, 19%, 1%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3168" y="-0.3589"/></g><g fill="rgb(11%, 37%, 76%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2082" y="0.1294"/></g><g fill="rgb(21%, 35%, 76%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1425" y="0.1343"/></g><g fill="rgb(28%, 33%, 76%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0764" y="0.1343"/></g><g fill="rgb(34%, 31%, 75%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0107" y="0.1294"/></g><g fill="rgb(39%, 30%, 74%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0534" y="0.1197"/></g><g fill="rgb(43%, 28%, 72%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1149" y="0.1053"/></g><g fill="rgb(47%, 26%, 70%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1729" y="0.0865"/></g><g fill="rgb(50%, 25%, 67%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2264" y="0.0636"/></g><g fill="rgb(53%, 23%, 63%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2747" y="0.0368"/></g><g fill="rgb(56%, 22%, 60%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3168" y="0.0067"/></g><g fill="rgb(59%, 20%, 56%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3523" y="-0.0262"/></g><g fill="rgb(61%, 19%, 52%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3805" y="-0.0616"/></g><g fill="rgb(63%, 18%, 47%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4009" y="-0.0987"/></g><g fill="rgb(65%, 17%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4133" y="-0.1371"/></g><g fill="rgb(68%, 13%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4485" y="-0.1761"/></g><g fill="rgb(69%, 12%, 32%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4441" y="-0.2173"/></g><g fill="rgb(70%, 12%, 26%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4309" y="-0.2579"/></g><g fill="rgb(70%, 13%, 19%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4093" y="-0.2973"/></g><g fill="rgb(70%, 14%, 11%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3795" y="-0.3347"/></g><g fill="rgb(8%, 36%, 78%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2140" y="0.1474"/></g><g fill="rgb(20%, 34%, 78%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1445" y="0.1526"/></g><g fill="rgb(28%, 32%, 78%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0744" y="0.1526"/></g><g fill="rgb(34%, 30%, 77%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0049" y="0.1474"/></g><g fill="rgb(39%, 29%, 76%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0630" y="0.1371"/></g><g fill="rgb(43%, 27%, 74%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1281" y="0.1219"/></g><g fill="rgb(47%, 25%, 71%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1895" y="0.1020"/></g><g fill="rgb(51%, 23%, 68%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2462" y="0.0777"/></g><g fill="rgb(54%, 22%, 65%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2973" y="0.0494"/></g><g fill="rgb(57%, 20%, 61%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3419" y="0.0175"/></g><g fill="rgb(60%, 18%, 57%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3795" y="-0.0174"/></g><g fill="rgb(62%, 17%, 52%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4093" y="-0.0548"/></g><g fill="rgb(65%, 15%, 47%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4309" y="-0.0942"/></g><g fill="rgb(66%, 14%, 42%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4441" y="-0.1348"/></g><g fill="rgb(69%, 9%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4795" y="-0.1761"/></g><g fill="rgb(70%, 8%, 31%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4748" y="-0.2196"/></g><g fill="rgb(71%, 8%, 25%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4610" y="-0.2625"/></g><g fill="rgb(72%, 9%, 18%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4381" y="-0.3040"/></g><g fill="rgb(72%, 10%, 8%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4066" y="-0.3435"/></g><g fill="rgb(3%, 36%, 80%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.2198" y="0.1654"/></g><g fill="rgb(19%, 34%, 81%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1464" y="0.1708"/></g><g fill="rgb(27%, 32%, 80%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0725" y="0.1708"/></g><g fill="rgb(34%, 29%, 79%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0009" y="0.1654"/></g><g fill="rgb(39%, 27%, 78%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0725" y="0.1545"/></g><g fill="rgb(44%, 25%, 76%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1413" y="0.1384"/></g><g fill="rgb(48%, 24%, 73%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2061" y="0.1174"/></g><g fill="rgb(52%, 22%, 70%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2659" y="0.0918"/></g><g fill="rgb(55%, 20%, 66%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3199" y="0.0619"/></g><g fill="rgb(58%, 18%, 62%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3670" y="0.0282"/></g><g fill="rgb(61%, 16%, 58%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4066" y="-0.0086"/></g><g fill="rgb(64%, 14%, 53%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4381" y="-0.0481"/></g><g fill="rgb(66%, 12%, 48%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4610" y="-0.0896"/></g><g fill="rgb(68%, 11%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4748" y="-0.1325"/></g><g fill="rgb(70%, 2%, 37%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.5105" y="-0.1761"/></g><g fill="rgb(72%, 0%, 31%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.5056" y="-0.2219"/></g><g fill="rgb(73%, 1%, 17%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4669" y="-0.3107"/></g><g fill="rgb(73%, 5%, 4%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4338" y="-0.3523"/></g><g fill="rgb(18%, 33%, 83%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1484" y="0.1891"/></g><g fill="rgb(27%, 31%, 82%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0705" y="0.1891"/></g><g fill="rgb(34%, 28%, 81%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0067" y="0.1833"/></g><g fill="rgb(39%, 26%, 80%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0821" y="0.1719"/></g><g fill="rgb(44%, 24%, 78%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1545" y="0.1550"/></g><g fill="rgb(48%, 22%, 75%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2227" y="0.1329"/></g><g fill="rgb(52%, 20%, 71%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2857" y="0.1059"/></g><g fill="rgb(56%, 18%, 68%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3424" y="0.0744"/></g><g fill="rgb(59%, 16%, 63%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3921" y="0.0390"/></g><g fill="rgb(62%, 13%, 59%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4338" y="0.0002"/></g><g fill="rgb(65%, 11%, 54%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4669" y="-0.0414"/></g><g fill="rgb(67%, 8%, 48%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4910" y="-0.0851"/></g><g fill="rgb(69%, 6%, 43%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.5056" y="-0.1302"/></g><g fill="rgb(17%, 32%, 85%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1503" y="0.2074"/></g><g fill="rgb(27%, 30%, 84%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0686" y="0.2074"/></g><g fill="rgb(34%, 27%, 83%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0125" y="0.2013"/></g><g fill="rgb(39%, 25%, 82%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0917" y="0.1893"/></g><g fill="rgb(44%, 22%, 79%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1677" y="0.1715"/></g><g fill="rgb(49%, 20%, 76%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2393" y="0.1483"/></g><g fill="rgb(53%, 18%, 73%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3055" y="0.1199"/></g><g fill="rgb(57%, 15%, 69%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3650" y="0.0869"/></g><g fill="rgb(60%, 13%, 64%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4171" y="0.0498"/></g><g fill="rgb(63%, 10%, 60%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4609" y="0.0090"/></g><g fill="rgb(66%, 7%, 54%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4957" y="-0.0346"/></g><g fill="rgb(68%, 2%, 49%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.5210" y="-0.0805"/></g><g fill="rgb(16%, 31%, 87%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1523" y="0.2256"/></g><g fill="rgb(26%, 29%, 87%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0666" y="0.2256"/></g><g fill="rgb(34%, 26%, 86%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0183" y="0.2193"/></g><g fill="rgb(40%, 23%, 84%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1013" y="0.2067"/></g><g fill="rgb(45%, 21%, 81%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1809" y="0.1881"/></g><g fill="rgb(49%, 18%, 78%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2559" y="0.1638"/></g><g fill="rgb(53%, 16%, 75%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3252" y="0.1340"/></g><g fill="rgb(57%, 13%, 70%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3876" y="0.0994"/></g><g fill="rgb(61%, 10%, 66%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4422" y="0.0605"/></g><g fill="rgb(64%, 5%, 60%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4881" y="0.0178"/></g><g fill="rgb(16%, 30%, 89%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1542" y="0.2439"/></g><g fill="rgb(26%, 27%, 89%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0647" y="0.2439"/></g><g fill="rgb(34%, 24%, 88%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0241" y="0.2372"/></g><g fill="rgb(40%, 22%, 86%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1108" y="0.2241"/></g><g fill="rgb(45%, 19%, 83%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1941" y="0.2047"/></g><g fill="rgb(50%, 16%, 80%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2725" y="0.1792"/></g><g fill="rgb(54%, 13%, 76%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3450" y="0.1481"/></g><g fill="rgb(58%, 9%, 72%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4102" y="0.1120"/></g><g fill="rgb(62%, 4%, 67%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4673" y="0.0713"/></g><g fill="rgb(15%, 29%, 91%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1562" y="0.2621"/></g><g fill="rgb(26%, 26%, 91%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0627" y="0.2621"/></g><g fill="rgb(34%, 23%, 90%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0299" y="0.2552"/></g><g fill="rgb(40%, 20%, 88%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1204" y="0.2415"/></g><g fill="rgb(46%, 16%, 85%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2073" y="0.2212"/></g><g fill="rgb(50%, 13%, 82%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2891" y="0.1946"/></g><g fill="rgb(55%, 9%, 78%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3647" y="0.1622"/></g><g fill="rgb(59%, 3%, 73%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.4328" y="0.1245"/></g><g fill="rgb(14%, 28%, 93%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1581" y="0.2804"/></g><g fill="rgb(26%, 24%, 93%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0608" y="0.2804"/></g><g fill="rgb(34%, 21%, 92%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0357" y="0.2732"/></g><g fill="rgb(40%, 17%, 90%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1300" y="0.2589"/></g><g fill="rgb(46%, 14%, 87%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2205" y="0.2378"/></g><g fill="rgb(51%, 9%, 83%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3058" y="0.2101"/></g><g fill="rgb(55%, 3%, 79%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3845" y="0.1763"/></g><g fill="rgb(13%, 27%, 96%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1601" y="0.2986"/></g><g fill="rgb(26%, 23%, 95%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0589" y="0.2986"/></g><g fill="rgb(34%, 19%, 94%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0416" y="0.2912"/></g><g fill="rgb(41%, 15%, 92%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1396" y="0.2763"/></g><g fill="rgb(46%, 10%, 89%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2337" y="0.2543"/></g><g fill="rgb(51%, 3%, 85%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.3224" y="0.2255"/></g><g fill="rgb(13%, 25%, 98%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1620" y="0.3169"/></g><g fill="rgb(26%, 21%, 97%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0569" y="0.3169"/></g><g fill="rgb(34%, 16%, 96%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0474" y="0.3091"/></g><g fill="rgb(41%, 11%, 94%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1492" y="0.2937"/></g><g fill="rgb(47%, 4%, 91%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.2469" y="0.2709"/></g><g fill="rgb(12%, 23%, 100%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.1640" y="0.3352"/></g><g fill="rgb(26%, 19%, 99%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="-0.0550" y="0.3352"/></g><g fill="rgb(35%, 13%, 98%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.0532" y="0.3271"/></g><g fill="rgb(42%, 6%, 96%)" fill-opacity="1.0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" stroke-width="0"><rect height="0.0100" width="0.0100" x="0.1587" y="0.3111"/></g></g></g><g class="hud"><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.8232" width="1.2398" x="-0.5694" y="-0.4455"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><g transform="rotate(-90.0, -0.5942, 0.3778)"><polyline points="-0.5942,0.3928
+}</style><g class="chart"><g class="dots"><g stroke-width="0.0030" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" fill="rgb(2%, 73%, 80%)" fill-opacity="1.0"><circle cx="-0.4441" cy="-0.0689" r="0.0400"/></g><g stroke-width="0.0030" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" fill="rgb(2%, 29%, 48%)" fill-opacity="1.0"><circle cx="-0.2305" cy="-0.0039" r="0.0400"/></g><g stroke-width="0.0030" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" fill="rgb(66%, 7%, 55%)" fill-opacity="1.0"><circle cx="0.4990" cy="-0.0272" r="0.0400"/></g><g stroke-width="0.0030" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" fill="rgb(96%, 60%, 92%)" fill-opacity="1.0"><circle cx="0.3022" cy="-0.0380" r="0.0400"/></g><g stroke-width="0.0030" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" fill="rgb(100%, 71%, 35%)" fill-opacity="1.0"><circle cx="0.0407" cy="-0.4086" r="0.0400"/></g><g stroke-width="0.0030" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" fill="rgb(73%, 34%, 1%)" fill-opacity="1.0"><circle cx="0.1944" cy="-0.3813" r="0.0400"/></g><g stroke-width="0.0030" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" fill="rgb(21%, 29%, 7%)" fill-opacity="1.0"><circle cx="-0.2667" cy="-0.2936" r="0.0400"/></g><g stroke-width="0.0030" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1.0" fill="rgb(53%, 51%, 28%)" fill-opacity="1.0"><circle cx="-0.1645" cy="-0.3131" r="0.0400"/></g></g><g class="wheel"><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1095" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 38%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0785" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 38%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0787" y="-0.1783"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 38%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0794" y="-0.1806"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 38%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0806" y="-0.1828"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 38%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0823" y="-0.1849"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 38%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0844" y="-0.1868"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 38%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0869" y="-0.1886"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 38%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0897" y="-0.1902"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 38%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0928" y="-0.1915"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 38%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0963" y="-0.1926"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 39%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0999" y="-0.1935"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 39%, 36%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1036" y="-0.1940"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 39%, 36%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1075" y="-0.1943"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 39%, 36%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1114" y="-0.1943"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 36%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1153" y="-0.1940"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1190" y="-0.1935"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1227" y="-0.1926"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 39%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1261" y="-0.1915"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 39%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1292" y="-0.1902"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 39%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1321" y="-0.1886"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 40%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1345" y="-0.1868"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 40%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1366" y="-0.1849"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 40%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1383" y="-0.1828"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 40%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1395" y="-0.1806"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 40%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1402" y="-0.1783"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 40%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1405" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 40%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1402" y="-0.1738"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 40%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1395" y="-0.1715"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 40%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1383" y="-0.1693"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 40%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1366" y="-0.1672"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 40%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1345" y="-0.1653"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 39%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1321" y="-0.1635"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 39%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1292" y="-0.1620"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 39%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1261" y="-0.1606"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 39%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1227" y="-0.1595"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 39%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1190" y="-0.1587"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 39%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1153" y="-0.1581"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 39%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1114" y="-0.1578"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 39%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1075" y="-0.1578"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 39%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1036" y="-0.1581"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0999" y="-0.1587"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 38%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0963" y="-0.1595"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 38%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0928" y="-0.1606"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 38%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0897" y="-0.1620"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 38%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0869" y="-0.1635"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 38%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0844" y="-0.1653"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 38%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0823" y="-0.1672"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 38%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0806" y="-0.1693"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 38%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0794" y="-0.1715"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 38%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0787" y="-0.1738"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 37%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0475" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 37%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0480" y="-0.1806"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 37%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0494" y="-0.1852"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 37%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0518" y="-0.1895"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 37%, 36%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0551" y="-0.1937"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 37%, 36%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0593" y="-0.1976"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 38%, 35%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0643" y="-0.2011"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 38%, 35%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0699" y="-0.2042"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 38%, 35%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0762" y="-0.2069"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 38%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0831" y="-0.2092"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 38%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0903" y="-0.2109"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 38%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0978" y="-0.2120"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 39%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1056" y="-0.2126"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 39%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1133" y="-0.2126"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 39%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1211" y="-0.2120"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 39%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1286" y="-0.2109"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 40%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1359" y="-0.2092"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 40%, 35%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1427" y="-0.2069"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 40%, 35%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1490" y="-0.2042"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 40%, 36%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1546" y="-0.2011"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 40%, 36%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1596" y="-0.1976"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 40%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1638" y="-0.1937"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 40%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1671" y="-0.1895"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 40%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1695" y="-0.1852"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 40%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1710" y="-0.1806"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 40%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1714" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 40%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1710" y="-0.1715"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 40%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1695" y="-0.1670"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 40%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1671" y="-0.1626"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 40%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1638" y="-0.1584"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 40%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1596" y="-0.1546"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 40%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1546" y="-0.1510"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 40%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1490" y="-0.1479"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 40%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1427" y="-0.1452"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 39%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1359" y="-0.1430"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 39%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1286" y="-0.1413"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 39%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1211" y="-0.1401"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 39%, 44%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1133" y="-0.1395"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 39%, 44%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1056" y="-0.1395"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 38%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0978" y="-0.1401"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 38%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0903" y="-0.1413"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 38%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0831" y="-0.1430"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 38%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0762" y="-0.1452"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 38%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0699" y="-0.1479"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 38%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0643" y="-0.1510"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 37%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0593" y="-0.1546"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 37%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0551" y="-0.1584"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 37%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0518" y="-0.1626"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 37%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0494" y="-0.1670"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 37%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0480" y="-0.1715"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 36%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0165" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 36%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0172" y="-0.1829"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 36%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0194" y="-0.1897"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 36%, 36%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0230" y="-0.1963"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 37%, 35%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0280" y="-0.2025"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 37%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0342" y="-0.2083"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 37%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0417" y="-0.2136"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 37%, 33%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0502" y="-0.2183"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 37%, 32%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0596" y="-0.2224"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 38%, 32%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0699" y="-0.2257"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 38%, 32%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0807" y="-0.2283"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 38%, 31%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0920" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 39%, 31%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1036" y="-0.2308"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 39%, 31%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1153" y="-0.2308"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 39%, 32%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1269" y="-0.2300"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 40%, 32%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1382" y="-0.2283"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 40%, 32%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1490" y="-0.2257"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 40%, 33%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1593" y="-0.2224"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 40%, 33%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1687" y="-0.2183"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 41%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1772" y="-0.2136"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 41%, 35%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1847" y="-0.2083"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 41%, 36%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1909" y="-0.2025"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(33%, 41%, 36%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1959" y="-0.1963"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(33%, 41%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1995" y="-0.1897"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(32%, 41%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2017" y="-0.1829"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(32%, 41%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2024" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(31%, 41%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2017" y="-0.1692"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(31%, 41%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1995" y="-0.1624"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(31%, 41%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1959" y="-0.1559"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(31%, 41%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1909" y="-0.1496"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(31%, 41%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1847" y="-0.1438"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(32%, 41%, 44%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1772" y="-0.1385"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(32%, 40%, 44%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1687" y="-0.1338"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(33%, 40%, 45%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1593" y="-0.1297"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(33%, 40%, 45%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1490" y="-0.1264"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 39%, 46%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1382" y="-0.1239"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 39%, 46%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1269" y="-0.1221"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 39%, 46%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1153" y="-0.1213"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 39%, 46%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1036" y="-0.1213"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 38%, 46%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0920" y="-0.1221"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 38%, 45%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0807" y="-0.1239"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 38%, 45%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0699" y="-0.1264"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 37%, 45%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0596" y="-0.1297"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 37%, 44%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0502" y="-0.1338"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 37%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0417" y="-0.1385"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 37%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0342" y="-0.1438"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 37%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0280" y="-0.1496"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 36%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0230" y="-0.1559"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 36%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0194" y="-0.1624"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 36%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0172" y="-0.1692"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 35%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0145" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 35%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0135" y="-0.1852"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 35%, 36%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0106" y="-0.1943"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 35%, 35%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0058" y="-0.2030"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 36%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0008" y="-0.2113"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 36%, 33%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0092" y="-0.2191"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 36%, 32%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0191" y="-0.2261"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 36%, 31%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0304" y="-0.2324"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 37%, 30%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0430" y="-0.2378"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 37%, 30%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0567" y="-0.2423"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 38%, 29%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0711" y="-0.2457"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 38%, 29%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0862" y="-0.2479"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 38%, 29%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1017" y="-0.2491"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 39%, 29%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1172" y="-0.2491"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 39%, 29%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1327" y="-0.2479"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 40%, 29%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1478" y="-0.2457"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 40%, 30%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1622" y="-0.2423"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 40%, 31%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1759" y="-0.2378"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 41%, 31%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1885" y="-0.2324"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 41%, 32%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1998" y="-0.2261"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 41%, 33%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2098" y="-0.2191"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(32%, 42%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2181" y="-0.2113"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(31%, 42%, 36%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2247" y="-0.2030"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(30%, 42%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2295" y="-0.1943"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(30%, 42%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2325" y="-0.1852"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(29%, 42%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2334" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(28%, 42%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2325" y="-0.1669"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(28%, 42%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2295" y="-0.1579"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(28%, 42%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2247" y="-0.1491"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(28%, 42%, 44%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2181" y="-0.1408"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(29%, 41%, 45%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2098" y="-0.1330"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(29%, 41%, 46%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1998" y="-0.1260"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(30%, 41%, 46%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1885" y="-0.1197"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(31%, 40%, 47%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1759" y="-0.1143"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(31%, 40%, 47%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1622" y="-0.1098"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(33%, 40%, 48%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1478" y="-0.1065"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 39%, 48%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1327" y="-0.1042"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 39%, 48%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1172" y="-0.1030"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 38%, 48%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1017" y="-0.1030"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 38%, 48%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0862" y="-0.1042"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 38%, 48%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0711" y="-0.1065"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 37%, 47%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0567" y="-0.1098"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 37%, 46%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0430" y="-0.1143"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 37%, 46%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0304" y="-0.1197"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 36%, 45%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0191" y="-0.1260"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 36%, 44%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0092" y="-0.1330"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 36%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0008" y="-0.1408"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 36%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0058" y="-0.1491"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 35%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0106" y="-0.1579"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 35%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0135" y="-0.1669"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(48%, 34%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0455" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 34%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0443" y="-0.1875"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 34%, 35%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0407" y="-0.1988"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 35%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0346" y="-0.2097"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 35%, 33%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0264" y="-0.2201"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 35%, 31%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0159" y="-0.2298"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 35%, 30%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0035" y="-0.2387"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(48%, 36%, 29%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0107" y="-0.2465"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(48%, 36%, 28%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0264" y="-0.2533"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 37%, 27%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0435" y="-0.2588"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 37%, 26%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0616" y="-0.2630"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 38%, 26%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0804" y="-0.2659"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 38%, 26%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0997" y="-0.2673"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 39%, 26%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1192" y="-0.2673"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 39%, 26%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1385" y="-0.2659"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 40%, 27%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1573" y="-0.2630"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 40%, 27%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1754" y="-0.2588"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 41%, 28%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1925" y="-0.2533"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 41%, 29%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2082" y="-0.2465"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 42%, 31%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2224" y="-0.2387"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(32%, 42%, 32%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2348" y="-0.2298"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(31%, 42%, 33%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2453" y="-0.2201"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(29%, 42%, 35%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2536" y="-0.2097"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(28%, 43%, 36%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2596" y="-0.1988"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(27%, 43%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2632" y="-0.1875"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(26%, 43%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2644" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(25%, 43%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2632" y="-0.1646"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(25%, 43%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2596" y="-0.1533"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(25%, 42%, 44%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2536" y="-0.1424"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(25%, 42%, 45%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2453" y="-0.1320"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(25%, 42%, 46%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2348" y="-0.1223"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(26%, 41%, 47%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2224" y="-0.1134"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(27%, 41%, 48%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2082" y="-0.1056"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(28%, 41%, 49%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1925" y="-0.0988"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(29%, 40%, 49%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1754" y="-0.0933"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(31%, 40%, 50%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1573" y="-0.0891"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(32%, 39%, 50%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1385" y="-0.0862"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 39%, 50%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1192" y="-0.0848"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 38%, 50%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0997" y="-0.0848"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(37%, 38%, 50%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0804" y="-0.0862"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 37%, 50%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0616" y="-0.0891"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 37%, 49%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0435" y="-0.0933"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 36%, 48%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0264" y="-0.0988"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 36%, 47%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0107" y="-0.1056"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 36%, 46%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0035" y="-0.1134"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 35%, 45%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0159" y="-0.1223"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 35%, 44%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0264" y="-0.1320"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 35%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0346" y="-0.1424"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 34%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0407" y="-0.1533"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(48%, 34%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0443" y="-0.1646"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(50%, 33%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0765" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(51%, 33%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0751" y="-0.1898"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(51%, 33%, 35%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0707" y="-0.2034"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(51%, 34%, 33%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0635" y="-0.2165"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(51%, 34%, 31%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0535" y="-0.2289"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(51%, 34%, 30%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0410" y="-0.2406"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(50%, 35%, 28%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0261" y="-0.2512"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(50%, 35%, 27%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0091" y="-0.2606"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 36%, 25%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0098" y="-0.2687"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(48%, 36%, 24%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0303" y="-0.2754"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 37%, 24%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0520" y="-0.2804"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 37%, 23%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0746" y="-0.2839"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 38%, 23%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0978" y="-0.2856"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 39%, 23%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1211" y="-0.2856"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 39%, 23%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1443" y="-0.2839"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 40%, 24%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1669" y="-0.2804"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 41%, 25%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1886" y="-0.2754"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 41%, 26%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2091" y="-0.2687"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 42%, 27%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2280" y="-0.2606"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(33%, 42%, 29%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2450" y="-0.2512"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(31%, 43%, 30%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2599" y="-0.2406"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(29%, 43%, 32%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2724" y="-0.2289"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(27%, 43%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2824" y="-0.2165"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(25%, 43%, 36%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2896" y="-0.2034"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(24%, 43%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2940" y="-0.1898"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(22%, 43%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2954" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(21%, 43%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2940" y="-0.1623"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(21%, 43%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2896" y="-0.1488"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(21%, 43%, 45%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2824" y="-0.1357"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(21%, 43%, 46%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2724" y="-0.1232"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(22%, 42%, 47%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2599" y="-0.1115"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(23%, 42%, 49%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2450" y="-0.1009"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(24%, 41%, 50%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2280" y="-0.0915"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(25%, 41%, 51%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2091" y="-0.0834"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(27%, 40%, 52%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1886" y="-0.0767"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(29%, 40%, 52%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1669" y="-0.0717"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(31%, 39%, 52%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1443" y="-0.0682"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(33%, 39%, 53%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1211" y="-0.0665"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 38%, 52%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0978" y="-0.0665"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 37%, 52%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0746" y="-0.0682"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 37%, 52%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0520" y="-0.0717"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 36%, 51%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0303" y="-0.0767"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 36%, 50%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0098" y="-0.0834"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 35%, 49%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0091" y="-0.0915"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 35%, 48%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0261" y="-0.1009"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 34%, 47%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0410" y="-0.1115"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 34%, 45%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0535" y="-0.1232"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(48%, 34%, 44%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0635" y="-0.1357"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 33%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0707" y="-0.1488"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(50%, 33%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0751" y="-0.1623"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(52%, 32%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1075" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(52%, 32%, 36%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1058" y="-0.1921"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 32%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1007" y="-0.2079"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 32%, 32%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0923" y="-0.2232"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 33%, 30%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0807" y="-0.2377"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 33%, 28%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0661" y="-0.2513"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(52%, 34%, 26%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0487" y="-0.2637"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(52%, 34%, 24%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0288" y="-0.2747"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(51%, 35%, 23%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0068" y="-0.2842"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(50%, 36%, 21%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0171" y="-0.2919"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 36%, 20%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0424" y="-0.2978"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 37%, 20%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0688" y="-0.3018"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 38%, 19%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0958" y="-0.3039"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 39%, 19%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1231" y="-0.3039"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 39%, 20%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1501" y="-0.3018"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 40%, 21%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1765" y="-0.2978"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 41%, 22%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2018" y="-0.2919"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 41%, 23%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2257" y="-0.2842"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 42%, 25%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2478" y="-0.2747"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(31%, 43%, 27%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2676" y="-0.2637"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(29%, 43%, 29%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2850" y="-0.2513"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(27%, 43%, 31%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2996" y="-0.2377"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(24%, 44%, 33%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3112" y="-0.2232"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(22%, 44%, 35%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3196" y="-0.2079"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(20%, 44%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3247" y="-0.1921"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(18%, 44%, 39%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3264" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(17%, 44%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3247" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(16%, 44%, 44%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3196" y="-0.1442"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(16%, 44%, 45%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3112" y="-0.1289"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(16%, 43%, 47%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2996" y="-0.1144"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(17%, 43%, 49%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2850" y="-0.1008"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(19%, 42%, 50%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2676" y="-0.0884"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(21%, 42%, 52%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2478" y="-0.0774"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(23%, 41%, 53%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2257" y="-0.0679"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(25%, 41%, 54%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2018" y="-0.0602"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(27%, 40%, 54%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1765" y="-0.0543"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(29%, 39%, 55%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1501" y="-0.0503"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(32%, 38%, 55%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1231" y="-0.0483"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 38%, 55%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0958" y="-0.0483"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 37%, 54%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0688" y="-0.0503"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 36%, 54%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0424" y="-0.0543"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 36%, 53%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0171" y="-0.0602"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 35%, 52%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0068" y="-0.0679"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 35%, 51%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0288" y="-0.0774"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 34%, 49%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0487" y="-0.0884"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 33%, 48%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0661" y="-0.1008"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(48%, 33%, 46%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0807" y="-0.1144"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 33%, 44%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0923" y="-0.1289"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(50%, 32%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1007" y="-0.1442"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(51%, 32%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1058" y="-0.1600"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 31%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1385" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(54%, 31%, 36%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1366" y="-0.1944"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(54%, 31%, 33%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1307" y="-0.2125"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(55%, 31%, 31%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1211" y="-0.2299"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(55%, 32%, 28%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1078" y="-0.2466"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(54%, 32%, 26%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0912" y="-0.2621"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(54%, 33%, 24%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0713" y="-0.2762"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 33%, 22%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0486" y="-0.2888"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(52%, 34%, 20%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0234" y="-0.2996"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(51%, 35%, 18%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0039" y="-0.3085"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(50%, 36%, 17%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0328" y="-0.3152"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(48%, 37%, 16%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0630" y="-0.3198"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 38%, 15%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0939" y="-0.3221"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 38%, 16%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1250" y="-0.3221"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 39%, 16%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1559" y="-0.3198"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 40%, 17%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1861" y="-0.3152"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 41%, 19%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2150" y="-0.3085"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 42%, 21%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2423" y="-0.2996"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(33%, 42%, 23%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2675" y="-0.2888"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(30%, 43%, 25%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2902" y="-0.2762"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(27%, 44%, 27%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3101" y="-0.2621"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(24%, 44%, 30%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3268" y="-0.2466"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(21%, 44%, 32%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3400" y="-0.2299"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(18%, 45%, 35%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3496" y="-0.2125"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(15%, 45%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3555" y="-0.1944"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(12%, 45%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3574" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(10%, 45%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3555" y="-0.1577"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(8%, 44%, 44%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3496" y="-0.1397"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(8%, 44%, 46%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3400" y="-0.1222"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(9%, 44%, 48%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3268" y="-0.1056"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(11%, 43%, 50%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3101" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(14%, 43%, 52%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2902" y="-0.0759"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(16%, 42%, 53%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2675" y="-0.0633"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(19%, 41%, 55%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2423" y="-0.0525"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(22%, 41%, 56%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2150" y="-0.0436"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(25%, 40%, 56%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1861" y="-0.0369"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(28%, 39%, 57%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1559" y="-0.0323"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(31%, 38%, 57%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1250" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(33%, 38%, 57%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0939" y="-0.0300"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(36%, 37%, 56%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0630" y="-0.0323"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 36%, 56%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0328" y="-0.0369"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 35%, 55%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0039" y="-0.0436"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 34%, 54%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0234" y="-0.0525"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 34%, 52%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0486" y="-0.0633"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 33%, 51%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0713" y="-0.0759"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(48%, 33%, 49%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0912" y="-0.0900"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 32%, 47%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1078" y="-0.1056"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(51%, 32%, 45%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1211" y="-0.1222"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(52%, 31%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1307" y="-0.1397"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 31%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1366" y="-0.1577"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(55%, 30%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1695" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(56%, 30%, 35%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1673" y="-0.1967"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(56%, 30%, 33%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1607" y="-0.2170"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(56%, 30%, 30%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1499" y="-0.2367"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(56%, 31%, 27%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1350" y="-0.2554"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(56%, 31%, 24%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1162" y="-0.2728"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(56%, 32%, 22%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0939" y="-0.2888"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(55%, 32%, 19%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0684" y="-0.3029"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(54%, 33%, 17%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0400" y="-0.3151"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 34%, 15%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0093" y="-0.3250"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(51%, 35%, 13%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0233" y="-0.3326"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(50%, 36%, 11%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0572" y="-0.3378"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(48%, 37%, 11%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0919" y="-0.3404"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 38%, 11%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1270" y="-0.3404"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 39%, 12%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1617" y="-0.3378"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 40%, 13%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1957" y="-0.3326"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 41%, 15%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2282" y="-0.3250"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 42%, 17%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2589" y="-0.3151"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(32%, 43%, 20%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2873" y="-0.3029"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(29%, 44%, 23%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3128" y="-0.2888"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(26%, 44%, 26%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3351" y="-0.2728"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(22%, 45%, 28%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3539" y="-0.2554"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(18%, 45%, 31%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3688" y="-0.2367"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(14%, 45%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3797" y="-0.2170"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(8%, 45%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3862" y="-0.1967"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(1%, 45%, 40%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3884" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(5%, 43%, 54%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3128" y="-0.0634"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(11%, 42%, 55%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2873" y="-0.0492"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(15%, 42%, 57%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2589" y="-0.0370"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(19%, 41%, 58%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2282" y="-0.0271"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(23%, 40%, 58%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1957" y="-0.0195"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(26%, 39%, 59%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1617" y="-0.0143"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(30%, 38%, 59%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1270" y="-0.0117"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(33%, 37%, 59%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0919" y="-0.0117"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 36%, 59%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0572" y="-0.0143"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 35%, 58%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0233" y="-0.0195"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 35%, 57%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0093" y="-0.0271"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 34%, 56%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0400" y="-0.0370"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 33%, 54%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0684" y="-0.0492"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 32%, 52%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0939" y="-0.0634"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 32%, 50%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1162" y="-0.0793"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(50%, 31%, 48%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1350" y="-0.0967"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(52%, 31%, 46%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1499" y="-0.1154"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 30%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1607" y="-0.1351"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(54%, 30%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1673" y="-0.1554"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(57%, 29%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2005" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(57%, 29%, 35%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1981" y="-0.1990"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(58%, 29%, 32%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1908" y="-0.2216"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(58%, 29%, 29%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1787" y="-0.2434"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(58%, 29%, 26%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1622" y="-0.2642"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(58%, 30%, 22%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1413" y="-0.2836"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(57%, 31%, 19%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1165" y="-0.3013"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(56%, 32%, 16%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0881" y="-0.3170"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(55%, 33%, 13%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0566" y="-0.3305"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(54%, 34%, 10%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0225" y="-0.3416"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 35%, 7%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0137" y="-0.3500"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(51%, 36%, 4%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0514" y="-0.3558"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 37%, 3%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0900" y="-0.3586"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 38%, 3%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1289" y="-0.3586"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 39%, 5%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1675" y="-0.3558"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 40%, 8%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2052" y="-0.3500"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 41%, 11%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2414" y="-0.3416"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 42%, 14%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2755" y="-0.3305"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(32%, 43%, 17%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3070" y="-0.3170"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(28%, 44%, 20%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3354" y="-0.3013"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(24%, 45%, 24%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3602" y="-0.2836"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(19%, 45%, 27%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3811" y="-0.2642"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(14%, 46%, 30%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3977" y="-0.2434"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(6%, 46%, 33%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.4097" y="-0.2216"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(0%, 43%, 57%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3070" y="-0.0351"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(10%, 42%, 58%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2755" y="-0.0216"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(16%, 41%, 60%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2414" y="-0.0105"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(21%, 40%, 61%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2052" y="-0.0021"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(25%, 39%, 61%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1675" y="0.0036"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(29%, 38%, 61%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1289" y="0.0065"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(32%, 37%, 61%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0900" y="0.0065"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 36%, 61%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0514" y="0.0036"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 35%, 60%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0137" y="-0.0021"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 34%, 59%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0225" y="-0.0105"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 33%, 57%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0566" y="-0.0216"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 32%, 56%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0881" y="-0.0351"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(48%, 31%, 54%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1165" y="-0.0508"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(50%, 31%, 51%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1413" y="-0.0685"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(52%, 30%, 49%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1622" y="-0.0879"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 29%, 46%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1787" y="-0.1087"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(55%, 29%, 44%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1908" y="-0.1306"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(56%, 29%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1981" y="-0.1531"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(58%, 27%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2315" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(59%, 27%, 35%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2288" y="-0.2013"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(59%, 27%, 31%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2208" y="-0.2261"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(60%, 28%, 28%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2076" y="-0.2501"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(60%, 28%, 24%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1893" y="-0.2730"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(59%, 29%, 21%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1664" y="-0.2943"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(59%, 30%, 17%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1391" y="-0.3138"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(58%, 31%, 13%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1079" y="-0.3311"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(57%, 32%, 8%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0732" y="-0.3460"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(55%, 33%, 2%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0357" y="-0.3581"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 42%, 4%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2546" y="-0.3581"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 43%, 9%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2921" y="-0.3460"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(31%, 44%, 14%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3268" y="-0.3311"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(26%, 44%, 18%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3580" y="-0.3138"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(22%, 45%, 22%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3853" y="-0.2943"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(16%, 46%, 26%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.4082" y="-0.2730"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(7%, 46%, 29%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.4265" y="-0.2501"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(0%, 42%, 60%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2921" y="-0.0062"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(12%, 41%, 62%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2546" y="0.0060"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(18%, 40%, 63%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2148" y="0.0153"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(23%, 39%, 63%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1733" y="0.0216"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(27%, 38%, 63%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1309" y="0.0248"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(31%, 36%, 63%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0880" y="0.0248"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 35%, 63%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0456" y="0.0216"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 34%, 62%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0041" y="0.0153"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 33%, 61%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0357" y="0.0060"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 32%, 59%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0732" y="-0.0062"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 31%, 57%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1079" y="-0.0210"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 30%, 55%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1391" y="-0.0383"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(51%, 30%, 53%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1664" y="-0.0578"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 29%, 50%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1893" y="-0.0791"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(54%, 28%, 47%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2076" y="-0.1020"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(56%, 28%, 44%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2208" y="-0.1260"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(57%, 27%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2288" y="-0.1508"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(60%, 26%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2625" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(60%, 26%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2596" y="-0.2036"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 26%, 30%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2508" y="-0.2307"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 26%, 27%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2364" y="-0.2569"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 27%, 23%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2165" y="-0.2818"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 27%, 18%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1915" y="-0.3051"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(60%, 28%, 14%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1617" y="-0.3263"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(59%, 29%, 8%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1276" y="-0.3452"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(58%, 31%, 0%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0898" y="-0.3614"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 43%, 2%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3088" y="-0.3614"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(30%, 44%, 10%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3465" y="-0.3452"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(25%, 45%, 15%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3806" y="-0.3263"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(19%, 46%, 20%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.4104" y="-0.3051"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(11%, 46%, 24%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.4354" y="-0.2818"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(6%, 41%, 64%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2678" y="0.0226"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(15%, 40%, 65%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2244" y="0.0327"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(21%, 38%, 65%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1792" y="0.0396"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(26%, 37%, 66%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1328" y="0.0430"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(31%, 36%, 65%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0861" y="0.0430"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 35%, 65%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0398" y="0.0396"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 34%, 64%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0055" y="0.0327"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 32%, 63%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0489" y="0.0226"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 31%, 61%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0898" y="0.0093"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 30%, 59%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1276" y="-0.0069"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 29%, 56%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1617" y="-0.0258"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(52%, 28%, 54%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1915" y="-0.0470"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(54%, 28%, 51%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2165" y="-0.0703"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(56%, 27%, 48%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2364" y="-0.0952"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(57%, 26%, 45%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2508" y="-0.1215"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(58%, 26%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2596" y="-0.1485"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 24%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2935" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(62%, 24%, 34%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2903" y="-0.2059"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(62%, 24%, 30%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2808" y="-0.2352"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(63%, 25%, 25%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2652" y="-0.2636"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(63%, 25%, 21%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2436" y="-0.2906"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(62%, 26%, 16%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2165" y="-0.3158"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(62%, 27%, 10%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1843" y="-0.3389"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 28%, 1%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1474" y="-0.3593"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(29%, 44%, 3%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.3663" y="-0.3593"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(24%, 45%, 12%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.4032" y="-0.3389"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(17%, 46%, 18%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.4354" y="-0.3158"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(4%, 47%, 23%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.4626" y="-0.2906"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(12%, 40%, 67%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2340" y="0.0501"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(20%, 38%, 67%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1850" y="0.0575"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(25%, 37%, 68%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1348" y="0.0613"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(30%, 36%, 68%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0842" y="0.0613"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 34%, 67%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0340" y="0.0575"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 33%, 66%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0151" y="0.0501"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 32%, 64%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0621" y="0.0391"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 30%, 63%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1065" y="0.0247"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(48%, 29%, 60%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1474" y="0.0072"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(50%, 28%, 58%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1843" y="-0.0133"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 27%, 55%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2165" y="-0.0363"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(55%, 26%, 52%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2436" y="-0.0615"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(57%, 26%, 49%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2652" y="-0.0885"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(58%, 25%, 45%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2808" y="-0.1169"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(60%, 24%, 41%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2903" y="-0.1463"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(62%, 22%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3245" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(63%, 22%, 33%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3211" y="-0.2082"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(64%, 22%, 29%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3109" y="-0.2397"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(64%, 23%, 24%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2940" y="-0.2703"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(64%, 23%, 19%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2708" y="-0.2994"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(64%, 24%, 14%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2416" y="-0.3266"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(63%, 26%, 6%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2069" y="-0.3514"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(22%, 46%, 8%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.4258" y="-0.3514"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(13%, 46%, 15%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.4605" y="-0.3266"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(7%, 39%, 69%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2436" y="0.0675"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(18%, 38%, 70%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1908" y="0.0755"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(24%, 36%, 70%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1367" y="0.0795"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(30%, 35%, 70%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0822" y="0.0795"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 34%, 69%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0281" y="0.0755"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 32%, 68%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0246" y="0.0675"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 31%, 66%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0753" y="0.0557"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 30%, 64%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1231" y="0.0402"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(48%, 28%, 62%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1671" y="0.0213"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(51%, 27%, 59%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2069" y="-0.0007"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(54%, 26%, 56%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2416" y="-0.0255"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(56%, 25%, 53%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2708" y="-0.0527"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(58%, 24%, 49%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2940" y="-0.0818"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(60%, 23%, 46%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3109" y="-0.1124"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 23%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3211" y="-0.1440"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(64%, 21%, 38%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3555" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(65%, 20%, 33%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3518" y="-0.2104"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(65%, 20%, 28%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3409" y="-0.2443"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(66%, 21%, 23%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3228" y="-0.2771"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(66%, 22%, 17%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2980" y="-0.3083"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(65%, 23%, 11%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2667" y="-0.3373"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(20%, 46%, 1%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.4484" y="-0.3639"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(9%, 47%, 13%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.4856" y="-0.3373"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(16%, 38%, 72%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1966" y="0.0935"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(23%, 36%, 72%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1387" y="0.0978"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(29%, 34%, 72%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0803" y="0.0978"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 33%, 71%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0223" y="0.0935"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 31%, 70%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0342" y="0.0849"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 30%, 68%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0885" y="0.0722"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 29%, 66%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1397" y="0.0556"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 27%, 64%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1869" y="0.0354"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(52%, 26%, 61%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2295" y="0.0118"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(55%, 25%, 57%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2667" y="-0.0148"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(57%, 24%, 54%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2980" y="-0.0439"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(59%, 23%, 50%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3228" y="-0.0750"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 22%, 46%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3409" y="-0.1078"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(63%, 21%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3518" y="-0.1417"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(65%, 18%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3865" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(66%, 18%, 33%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3826" y="-0.2127"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(67%, 18%, 27%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3709" y="-0.2488"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(67%, 19%, 22%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3517" y="-0.2838"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(67%, 20%, 16%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3251" y="-0.3171"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(67%, 21%, 7%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2918" y="-0.3481"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(2%, 47%, 9%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.5107" y="-0.3481"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(13%, 37%, 74%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2024" y="0.1115"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(22%, 35%, 74%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1406" y="0.1161"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(29%, 34%, 74%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0783" y="0.1161"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 32%, 73%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0165" y="0.1115"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(38%, 30%, 72%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0438" y="0.1023"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 29%, 70%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1017" y="0.0888"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 27%, 68%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1563" y="0.0711"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(50%, 26%, 65%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2067" y="0.0495"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 25%, 62%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2521" y="0.0243"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(55%, 23%, 59%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2918" y="-0.0040"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(58%, 22%, 55%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3251" y="-0.0350"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(60%, 21%, 51%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3517" y="-0.0683"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(62%, 20%, 47%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3709" y="-0.1033"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(64%, 19%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3826" y="-0.1394"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(67%, 16%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4175" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(68%, 16%, 32%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4133" y="-0.2150"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(68%, 16%, 27%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4009" y="-0.2534"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(69%, 16%, 21%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3805" y="-0.2905"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(69%, 17%, 13%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3523" y="-0.3259"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(68%, 19%, 1%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3168" y="-0.3589"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(11%, 37%, 76%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2082" y="0.1294"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(21%, 35%, 76%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1425" y="0.1343"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(28%, 33%, 76%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0764" y="0.1343"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 31%, 75%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0107" y="0.1294"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 30%, 74%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0534" y="0.1197"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 28%, 72%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1149" y="0.1053"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 26%, 70%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1729" y="0.0865"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(50%, 25%, 67%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2264" y="0.0636"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 23%, 63%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2747" y="0.0368"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(56%, 22%, 60%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3168" y="0.0067"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(59%, 20%, 56%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3523" y="-0.0262"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 19%, 52%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3805" y="-0.0616"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(63%, 18%, 47%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4009" y="-0.0987"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(65%, 17%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4133" y="-0.1371"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(68%, 13%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4485" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(69%, 12%, 32%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4441" y="-0.2173"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(70%, 12%, 26%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4309" y="-0.2579"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(70%, 13%, 19%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4093" y="-0.2973"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(70%, 14%, 11%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3795" y="-0.3347"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(8%, 36%, 78%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2140" y="0.1474"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(20%, 34%, 78%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1445" y="0.1526"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(28%, 32%, 78%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0744" y="0.1526"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 30%, 77%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0049" y="0.1474"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 29%, 76%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0630" y="0.1371"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(43%, 27%, 74%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1281" y="0.1219"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 25%, 71%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1895" y="0.1020"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(51%, 23%, 68%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2462" y="0.0777"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(54%, 22%, 65%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2973" y="0.0494"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(57%, 20%, 61%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3419" y="0.0175"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(60%, 18%, 57%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3795" y="-0.0174"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(62%, 17%, 52%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4093" y="-0.0548"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(65%, 15%, 47%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4309" y="-0.0942"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(66%, 14%, 42%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4441" y="-0.1348"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(69%, 9%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4795" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(70%, 8%, 31%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4748" y="-0.2196"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(71%, 8%, 25%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4610" y="-0.2625"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(72%, 9%, 18%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4381" y="-0.3040"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(72%, 10%, 8%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4066" y="-0.3435"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(3%, 36%, 80%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.2198" y="0.1654"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(19%, 34%, 81%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1464" y="0.1708"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(27%, 32%, 80%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0725" y="0.1708"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 29%, 79%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0009" y="0.1654"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 27%, 78%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0725" y="0.1545"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 25%, 76%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1413" y="0.1384"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(48%, 24%, 73%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2061" y="0.1174"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(52%, 22%, 70%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2659" y="0.0918"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(55%, 20%, 66%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3199" y="0.0619"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(58%, 18%, 62%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3670" y="0.0282"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 16%, 58%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4066" y="-0.0086"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(64%, 14%, 53%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4381" y="-0.0481"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(66%, 12%, 48%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4610" y="-0.0896"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(68%, 11%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4748" y="-0.1325"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(70%, 2%, 37%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.5105" y="-0.1761"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(72%, 0%, 31%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.5056" y="-0.2219"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(73%, 1%, 17%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4669" y="-0.3107"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(73%, 5%, 4%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4338" y="-0.3523"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(18%, 33%, 83%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1484" y="0.1891"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(27%, 31%, 82%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0705" y="0.1891"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 28%, 81%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0067" y="0.1833"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 26%, 80%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0821" y="0.1719"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 24%, 78%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1545" y="0.1550"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(48%, 22%, 75%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2227" y="0.1329"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(52%, 20%, 71%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2857" y="0.1059"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(56%, 18%, 68%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3424" y="0.0744"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(59%, 16%, 63%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3921" y="0.0390"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(62%, 13%, 59%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4338" y="0.0002"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(65%, 11%, 54%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4669" y="-0.0414"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(67%, 8%, 48%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4910" y="-0.0851"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(69%, 6%, 43%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.5056" y="-0.1302"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(17%, 32%, 85%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1503" y="0.2074"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(27%, 30%, 84%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0686" y="0.2074"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 27%, 83%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0125" y="0.2013"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(39%, 25%, 82%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0917" y="0.1893"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(44%, 22%, 79%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1677" y="0.1715"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 20%, 76%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2393" y="0.1483"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 18%, 73%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3055" y="0.1199"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(57%, 15%, 69%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3650" y="0.0869"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(60%, 13%, 64%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4171" y="0.0498"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(63%, 10%, 60%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4609" y="0.0090"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(66%, 7%, 54%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4957" y="-0.0346"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(68%, 2%, 49%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.5210" y="-0.0805"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(16%, 31%, 87%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1523" y="0.2256"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(26%, 29%, 87%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0666" y="0.2256"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 26%, 86%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0183" y="0.2193"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 23%, 84%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1013" y="0.2067"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 21%, 81%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1809" y="0.1881"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(49%, 18%, 78%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2559" y="0.1638"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(53%, 16%, 75%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3252" y="0.1340"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(57%, 13%, 70%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3876" y="0.0994"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(61%, 10%, 66%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4422" y="0.0605"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(64%, 5%, 60%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4881" y="0.0178"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(16%, 30%, 89%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1542" y="0.2439"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(26%, 27%, 89%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0647" y="0.2439"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 24%, 88%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0241" y="0.2372"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 22%, 86%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1108" y="0.2241"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(45%, 19%, 83%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1941" y="0.2047"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(50%, 16%, 80%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2725" y="0.1792"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(54%, 13%, 76%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3450" y="0.1481"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(58%, 9%, 72%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4102" y="0.1120"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(62%, 4%, 67%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4673" y="0.0713"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(15%, 29%, 91%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1562" y="0.2621"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(26%, 26%, 91%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0627" y="0.2621"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 23%, 90%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0299" y="0.2552"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 20%, 88%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1204" y="0.2415"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 16%, 85%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2073" y="0.2212"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(50%, 13%, 82%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2891" y="0.1946"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(55%, 9%, 78%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3647" y="0.1622"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(59%, 3%, 73%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.4328" y="0.1245"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(14%, 28%, 93%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1581" y="0.2804"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(26%, 24%, 93%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0608" y="0.2804"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 21%, 92%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0357" y="0.2732"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(40%, 17%, 90%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1300" y="0.2589"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 14%, 87%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2205" y="0.2378"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(51%, 9%, 83%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3058" y="0.2101"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(55%, 3%, 79%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3845" y="0.1763"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(13%, 27%, 96%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1601" y="0.2986"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(26%, 23%, 95%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0589" y="0.2986"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 19%, 94%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0416" y="0.2912"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 15%, 92%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1396" y="0.2763"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(46%, 10%, 89%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2337" y="0.2543"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(51%, 3%, 85%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.3224" y="0.2255"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(13%, 25%, 98%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1620" y="0.3169"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(26%, 21%, 97%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0569" y="0.3169"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(34%, 16%, 96%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0474" y="0.3091"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(41%, 11%, 94%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1492" y="0.2937"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(47%, 4%, 91%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.2469" y="0.2709"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(12%, 23%, 100%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.1640" y="0.3352"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(26%, 19%, 99%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="-0.0550" y="0.3352"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(35%, 13%, 98%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.0532" y="0.3271"/></g><g stroke-width="0" stroke="rgb(2%, 29%, 48%)" stroke-opacity="1.0" fill="rgb(42%, 6%, 96%)" fill-opacity="1.0"><rect width="0.0100" height="0.0100" x="0.1587" y="0.3111"/></g></g></g><g class="hud"><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.2398" height="0.8232" x="-0.5694" y="-0.4455"/></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><g transform="rotate(-90.0, -0.5942, 0.3778)"><polyline points="-0.5942,0.3928
 -0.5942,0.3628"/></g><g transform="rotate(-90.0, -0.5942, 0.2863)"><polyline points="-0.5942,0.3013
 -0.5942,0.2713"/></g><g transform="rotate(-90.0, -0.5942, 0.1948)"><polyline points="-0.5942,0.2098
 -0.5942,0.1798"/></g><g transform="rotate(-90.0, -0.5942, 0.1033)"><polyline points="-0.5942,0.1183
@@ -32,7 +32,7 @@
 -0.5942,-0.1861"/></g><g transform="rotate(-90.0, -0.5942, -0.2625)"><polyline points="-0.5942,-0.2475
 -0.5942,-0.2775"/></g><g transform="rotate(-90.0, -0.5942, -0.3540)"><polyline points="-0.5942,-0.3390
 -0.5942,-0.3690"/></g><g transform="rotate(-90.0, -0.5942, -0.4455)"><polyline points="-0.5942,-0.4305
--0.5942,-0.4605"/></g></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0413" stroke="none" stroke-width="0.0" text-anchor="end"><text x="-0.6239" y="0.3891">-0.30</text><text x="-0.6239" y="0.2976">-0.25</text><text x="-0.6239" y="0.2061">-0.20</text><text x="-0.6239" y="0.1147">-0.15</text><text x="-0.6239" y="0.0232">-0.10</text><text x="-0.6239" y="-0.0683">-0.05</text><text x="-0.6239" y="-0.1597"> 0.00</text><text x="-0.6239" y="-0.2512"> 0.05</text><text x="-0.6239" y="-0.3427"> 0.10</text><text x="-0.6239" y="-0.4341"> 0.15</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.5694,0.3778 0.6704,0.3778"/><polyline points="-0.5694,0.2863 0.6704,0.2863"/><polyline points="-0.5694,0.1948 0.6704,0.1948"/><polyline points="-0.5694,0.1033 0.6704,0.1033"/><polyline points="-0.5694,0.0119 0.6704,0.0119"/><polyline points="-0.5694,-0.0796 0.6704,-0.0796"/><polyline points="-0.5694,-0.1711 0.6704,-0.1711"/><polyline points="-0.5694,-0.2625 0.6704,-0.2625"/><polyline points="-0.5694,-0.3540 0.6704,-0.3540"/><polyline points="-0.5694,-0.4455 0.6704,-0.4455"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.8265" width="0.0033" x="-0.5810" y="-0.4471"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" stroke-width="0.0040"><polyline points="-0.5694,0.4174
+-0.5942,-0.4605"/></g></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0413" text-anchor="end"><text x="-0.6239" y="0.3891">-0.30</text><text x="-0.6239" y="0.2976">-0.25</text><text x="-0.6239" y="0.2061">-0.20</text><text x="-0.6239" y="0.1147">-0.15</text><text x="-0.6239" y="0.0232">-0.10</text><text x="-0.6239" y="-0.0683">-0.05</text><text x="-0.6239" y="-0.1597"> 0.00</text><text x="-0.6239" y="-0.2512"> 0.05</text><text x="-0.6239" y="-0.3427"> 0.10</text><text x="-0.6239" y="-0.4341"> 0.15</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.5694,0.3778 0.6704,0.3778"/><polyline points="-0.5694,0.2863 0.6704,0.2863"/><polyline points="-0.5694,0.1948 0.6704,0.1948"/><polyline points="-0.5694,0.1033 0.6704,0.1033"/><polyline points="-0.5694,0.0119 0.6704,0.0119"/><polyline points="-0.5694,-0.0796 0.6704,-0.0796"/><polyline points="-0.5694,-0.1711 0.6704,-0.1711"/><polyline points="-0.5694,-0.2625 0.6704,-0.2625"/><polyline points="-0.5694,-0.3540 0.6704,-0.3540"/><polyline points="-0.5694,-0.4455 0.6704,-0.4455"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="0.0033" height="0.8265" x="-0.5810" y="-0.4471"/></g></g></g><g class="axis"><g class="ticks"><g class="tickglyph"><g stroke-width="0.0040" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.4" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><polyline points="-0.5694,0.4174
 -0.5694,0.3874"/><polyline points="-0.4144,0.4174
 -0.4144,0.3874"/><polyline points="-0.2594,0.4174
 -0.2594,0.3874"/><polyline points="-0.1045,0.4174
@@ -41,4 +41,4 @@
 0.2055,0.3874"/><polyline points="0.3605,0.4174
 0.3605,0.3874"/><polyline points="0.5155,0.4174
 0.5155,0.3874"/><polyline points="0.6704,0.4174
-0.6704,0.3874"/></g></g><g class="ticktext"><g fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0413" stroke="none" stroke-width="0.0" text-anchor="middle"><text x="-0.5694" y="0.4547">-0.15</text><text x="-0.4144" y="0.4547">-0.10</text><text x="-0.2594" y="0.4547">-0.05</text><text x="-0.1045" y="0.4547"> 0.00</text><text x="0.0505" y="0.4547"> 0.05</text><text x="0.2055" y="0.4547"> 0.10</text><text x="0.3605" y="0.4547"> 0.15</text><text x="0.5155" y="0.4547"> 0.20</text><text x="0.6704" y="0.4547"> 0.25</text></g></g><g class="ticklines"><g fill="none" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" stroke-width="0.0050"><polyline points="-0.5694,0.3778 -0.5694,-0.4455"/><polyline points="-0.4144,0.3778 -0.4144,-0.4455"/><polyline points="-0.2594,0.3778 -0.2594,-0.4455"/><polyline points="-0.1045,0.3778 -0.1045,-0.4455"/><polyline points="0.0505,0.3778 0.0505,-0.4455"/><polyline points="0.2055,0.3778 0.2055,-0.4455"/><polyline points="0.3605,0.3778 0.3605,-0.4455"/><polyline points="0.5155,0.3778 0.5155,-0.4455"/><polyline points="0.6704,0.3778 0.6704,-0.4455"/></g></g></g><g class="axisbar"><g fill="rgb(5%, 5%, 5%)" fill-opacity="0.4" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="0.0033" width="1.2431" x="-0.5710" y="0.3860"/></g></g></g><g class="frame"><g fill="rgb(100%, 100%, 100%)" fill-opacity="0.02" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" stroke-width="0"><rect height="1.0" width="1.5000" x="-0.75" y="-0.5"/></g></g></g></svg>
+0.6704,0.3874"/></g></g><g class="ticktext"><g stroke-width="0.0" stroke="none" fill="rgb(5%, 5%, 5%)" fill-opacity="1.0" font-size="0.0413" text-anchor="middle"><text x="-0.5694" y="0.4547">-0.15</text><text x="-0.4144" y="0.4547">-0.10</text><text x="-0.2594" y="0.4547">-0.05</text><text x="-0.1045" y="0.4547"> 0.00</text><text x="0.0505" y="0.4547"> 0.05</text><text x="0.2055" y="0.4547"> 0.10</text><text x="0.3605" y="0.4547"> 0.15</text><text x="0.5155" y="0.4547"> 0.20</text><text x="0.6704" y="0.4547"> 0.25</text></g></g><g class="ticklines"><g stroke-width="0.0050" stroke="rgb(5%, 5%, 5%)" stroke-opacity="0.05" fill="none"><polyline points="-0.5694,0.3778 -0.5694,-0.4455"/><polyline points="-0.4144,0.3778 -0.4144,-0.4455"/><polyline points="-0.2594,0.3778 -0.2594,-0.4455"/><polyline points="-0.1045,0.3778 -0.1045,-0.4455"/><polyline points="0.0505,0.3778 0.0505,-0.4455"/><polyline points="0.2055,0.3778 0.2055,-0.4455"/><polyline points="0.3605,0.3778 0.3605,-0.4455"/><polyline points="0.5155,0.3778 0.5155,-0.4455"/><polyline points="0.6704,0.3778 0.6704,-0.4455"/></g></g></g><g class="axisbar"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(5%, 5%, 5%)" fill-opacity="0.4"><rect width="1.2431" height="0.0033" x="-0.5710" y="0.3860"/></g></g></g><g class="frame"><g stroke-width="0" stroke="rgb(0%, 0%, 0%)" stroke-opacity="0" fill="rgb(100%, 100%, 100%)" fill-opacity="0.02"><rect width="1.5000" height="1.0" x="-0.75" y="-0.5"/></g></g></g></svg>
diff --git a/readme.org b/readme.org
--- a/readme.org
+++ b/readme.org
@@ -192,74 +192,25 @@
 #+end_src
 
 #+RESULTS:
-: Ok, 14 modules loaded.
-: >
-
-** tree-diff
-
-tree-diff is being used in `cabal test`.
-
-To spelunk into this:
-
-#+begin_src elisp
-(setq haskell-process-args-cabal-repl '("chart-svg:test"))
-#+end_src
-
-#+begin_src haskell
-:set prompt "> "
-import Main
-#+end_src
-
-** creating a proper tree-diff patch
-
-tree-diff doesn't have a patch function. For ediff to be a real patch:
-
-- count tree levels for changes
-- count insertion, deletion index for lists, and store record name for recs
-- invent javascript actions for identified changes
-
-ediff is the current hack.
-
-#+begin_src haskell
-let diff1 = ediff m0 m1
-#+end_src
-
-#+begin_src haskell :exports both
-diff1
-#+end_src
-
-#+RESULTS:
-: Cpy (EditRec "Markup" (fromList [("tag",Cpy (EditExp (App "\"top\"" []))),("atts",Cpy (EditApp "Attributes" [Cpy (EditApp "Map.fromList" [Cpy (EditLst [Cpy (EditApp "_\215_" [Cpy (EditExp (App "Class" [])),Swp (EditExp (App "\"a\"" [])) (EditExp (App "\"b\"" []))]),Cpy (EditExp (App "_\215_" [App "Attribute" [App "\"b\"" []],App "\"2\"" []]))])])])),("contents",Cpy (EditExp (Lst [App "MarkupLeaf" [Rec "Markup" (fromList [("tag",App "\"g\"" []),("atts",App "Attributes" [App "Map.fromList" [Lst []]]),("contents",Lst [])])],App "Content" [App "\"text\"" []]])))]))
-
-#+begin_src haskell :exports both
-prettyEditExpr diff1
-#+end_src
-
-#+RESULTS:
 #+begin_example
-Markup {
-  tag = "top",
-  atts =
-  Attributes
-    (Map.fromList [_×_ Class -"a" +"b", _×_ (Attribute "b") "2"]),
-  contents =
-  [ MarkupLeaf
-      Markup {
-        tag = "g", atts = Attributes (Map.fromList []), contents = []},
-    Content "text"]}
+Loaded GHCi configuration from /Users/tonyday/haskell/chart-svg/.ghci
+[ 1 of 12] Compiling Chart.Data       ( src/Chart/Data.hs, interpreted )
+[ 2 of 12] Compiling Data.Colour      ( src/Data/Colour.hs, interpreted )
+[ 3 of 12] Compiling Data.Path        ( src/Data/Path.hs, interpreted )
+[ 4 of 12] Compiling Data.Path.Parser ( src/Data/Path/Parser.hs, interpreted )
+[ 5 of 12] Compiling Chart.Style      ( src/Chart/Style.hs, interpreted )
+[ 6 of 12] Compiling Chart.Primitive  ( src/Chart/Primitive.hs, interpreted )
+[ 7 of 12] Compiling Chart.Hud        ( src/Chart/Hud.hs, interpreted )
+[ 8 of 12] Compiling Chart.Surface    ( src/Chart/Surface.hs, interpreted )
+[ 9 of 12] Compiling Chart.Markup     ( src/Chart/Markup.hs, interpreted )
+[10 of 12] Compiling Chart.Bar        ( src/Chart/Bar.hs, interpreted )
+[11 of 12] Compiling Chart            ( src/Chart.hs, interpreted )
+[12 of 12] Compiling Chart.Examples   ( src/Chart/Examples.hs, interpreted )
+Ok, 12 modules loaded.
+>>Ok, 12 modules loaded.
+>>
 #+end_example
 
-filterChangedEdit filters the edit expression to just the changed bits.
-
-#+begin_src haskell :exports both
-fmap prettyEditExpr $ filterChangedEdit diff1
-#+end_src
-
-#+RESULTS:
-: Just Markup {atts = Attributes (Map.fromList [_×_ -"a" +"b"])}
-
-
-
 * Test
 ** ChartOptions ==> Markup ==> ByteString rendering pipeline
 
@@ -278,16 +229,25 @@
 #+end_src
 
 #+RESULTS:
-: Markup {tag = "svg", atts = Attributes {attMap = fromList [(Attribute "height","300.0"),(Attribute "viewBox","-0.75 -0.5 1.5 1.0"),(Attribute "width","450.0"),(Attribute "xmlns","http://www.w3.org/2000/svg"),(Attribute "xmlns:xlink","http://www.w3.org/1999/xlink")]}, contents = [MarkupLeaf (Markup {tag = "style", atts = Attributes {attMap = fromList []}, contents = [Content ""]}),MarkupLeaf (Markup {tag = "g", atts = Attributes {attMap = fromList [(Class,"chart")]}, contents = []}),MarkupLeaf (Markup {tag = "g", atts = Attributes {attMap = fromList [(Class,"hud")]}, contents = []})]}
+: Markup {standard = Xml, markupTree = [Node {rootLabel = StartTag "svg" [Attr "xmlns" "http://www.w3.org/2000/svg",Attr "xmlns:xlink" "http://www.w3.org/1999/xlink",Attr "width" "450",Attr "height" "300",Attr "viewBox" "-0.75 -0.5 1.5 1.0"], subForest = [Node {rootLabel = StartTag "style" [], subForest = [Node {rootLabel = Content "", subForest = []}]},Node {rootLabel = StartTag "g" [Attr "class" "chart"], subForest = []},Node {rootLabel = StartTag "g" [Attr "class" "hud"], subForest = []}]}]}
 
 Markup to ByteString
 
 #+begin_src haskell :exports both
-encodeMarkup $ markupChartOptions c0
+import MarkupParse
+import Data.ByteString qualified as B
+B.putStr $ markdown (Indented 4) $ markupChartOptions c0
 #+end_src
 
 #+RESULTS:
-: <svg height=\"300.0\" viewBox=\"-0.75 -0.5 1.5 1.0\" width=\"450.0\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"><style></style><g class=\"chart\"/><g class=\"hud\"/></svg>
+: <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="450" height="300" viewBox="-0.75 -0.5 1.5 1.0">
+:     <style>
+:     </style>
+:     <g class="chart">
+:     </g>
+:     <g class="hud">
+:     </g>
+: </svg>
 
 *** round trip iso for encodeMarkup . parseMarkup
 
@@ -346,6 +306,24 @@
 | wave.svg       | True |
 | date.svg       | True |
 
+** Markup testing
+
+#+begin_src haskell :results output
+bs <- B.readFile "other/unit.svg"
+#+end_src
+
+#+RESULTS:
+: <interactive>:48:1: warning: [GHC-63397] [-Wname-shadowing]
+:     This binding for ‘bs’ shadows the existing binding
+:       defined at <interactive>:44:1
+
+#+begin_src haskell :results output
+import MarkupParse.Patch
+patch (normalize $ markup_ Xml bs) (normalize $ markupChartOptions unitExample)
+#+end_src
+
+#+RESULTS:
+: Nothing
 
 * chart-svg Hud Refactor
 
diff --git a/src/Chart.hs b/src/Chart.hs
--- a/src/Chart.hs
+++ b/src/Chart.hs
@@ -33,7 +33,6 @@
     module Chart.Hud,
     module Chart.Style,
     module Chart.Markup,
-    module Chart.Markup.Parser,
     module Chart.Bar,
     module Chart.Surface,
     module Data.Colour,
@@ -47,7 +46,6 @@
 import Chart.Data
 import Chart.Hud
 import Chart.Markup
-import Chart.Markup.Parser
 import Chart.Primitive
 import Chart.Style
 import Chart.Surface
diff --git a/src/Chart/FlatParse.hs b/src/Chart/FlatParse.hs
deleted file mode 100644
--- a/src/Chart/FlatParse.hs
+++ /dev/null
@@ -1,285 +0,0 @@
-{-# LANGUAGE AllowAmbiguousTypes #-}
-{-# LANGUAGE FlexibleContexts #-}
-{-# LANGUAGE LambdaCase #-}
-{-# LANGUAGE OverloadedLabels #-}
-{-# LANGUAGE OverloadedStrings #-}
-{-# LANGUAGE PatternSynonyms #-}
-{-# LANGUAGE QuasiQuotes #-}
-{-# LANGUAGE TemplateHaskell #-}
-{-# OPTIONS_GHC -Wno-name-shadowing #-}
-
--- | Lower-level flatparse parsers
-module Chart.FlatParse
-  ( runParserMaybe,
-    runParserEither,
-    testParser,
-    Expected (..),
-    Error (..),
-    prettyError,
-    cut,
-    cut',
-    ws,
-    ws_,
-    wss,
-    sep,
-    bracketed,
-    wrapped,
-    digit,
-    int,
-    double,
-    signed,
-  )
-where
-
-import Data.Bool
-import Data.ByteString (ByteString)
-import Data.Char hiding (isDigit)
-import Data.List (replicate)
-import FlatParse.Basic hiding (cut)
-import GHC.Exts
-import Prelude hiding (replicate)
-
--- $setup
--- >>> :set -XTemplateHaskell
--- >>> import Chart.FlatParse
--- >>> import FlatParse.Basic
-
--- * parser error model
-
---
--- taken from flatparse examples
-
--- | An expected item which is displayed in error messages.
-data Expected
-  = -- | An error message.
-    Msg String
-  | -- | A literal expected thing.
-    Lit String
-  deriving (Eq, Show, Ord)
-
-instance IsString Expected where fromString = Lit
-
--- | A parsing error.
-data Error
-  = -- | A precisely known error, like leaving out "in" from "let".
-    Precise Pos Expected
-  | -- | An imprecise error, when we expect a number of different things,
-    --   but parse something else.
-    Imprecise Pos [Expected]
-  deriving (Show)
-
-errorPos :: Error -> Pos
-errorPos (Precise p _) = p
-errorPos (Imprecise p _) = p
-
--- | Merge two errors. Inner errors (which were thrown at points with more consumed inputs)
---   are preferred. If errors are thrown at identical input positions, we prefer precise errors
---   to imprecise ones.
---
---   The point of prioritizing inner and precise errors is to suppress the deluge of "expected"
---   items, and instead try to point to a concrete issue to fix.
-merge :: Error -> Error -> Error
-merge e e' = case (errorPos e, errorPos e') of
-  (p, p') | p < p' -> e'
-  (p, p') | p > p' -> e
-  (p, _) -> case (e, e') of
-    (Precise {}, _) -> e
-    (_, Precise {}) -> e'
-    (Imprecise _ es, Imprecise _ es') -> Imprecise p (es <> es')
-{-# NOINLINE merge #-} -- merge is "cold" code, so we shouldn't inline it.
-
--- | Pretty print an error. The `B.ByteString` input is the source file. The offending line from the
---   source is displayed in the output.
-prettyError :: ByteString -> Error -> String
-prettyError b e =
-  let pos :: Pos
-      pos = case e of
-        Imprecise p _ -> p
-        Precise p _ -> p
-      ls = linesUtf8 b
-      (l, c) = head $ posLineCols b [pos]
-      line = if l < length ls then ls !! l else ""
-      line' = if length line > 300 then Prelude.drop (c - 50) $ Prelude.take (c + 50) line else line
-      linum = show l
-      lpad = fmap (const ' ') linum
-
-      expected (Lit s) = show s
-      expected (Msg s) = s
-
-      err (Precise _ e) = expected e
-      err (Imprecise _ es) = imprec es
-
-      imprec :: [Expected] -> String
-      imprec [] = error "impossible"
-      imprec [e] = expected e
-      imprec (e : es) = (expected e <> go es)
-        where
-          go [] = ""
-          go [e] = (" or " <> expected e)
-          go (e : es) = (", " <> expected e <> go es)
-   in (show l <> (":" <> (show c <> (":\n" <> (lpad <> ("|\n" <> (linum <> ("| " <> (line' <> ("\n" <> (lpad <> ("| " <> (replicate c ' ' <> ("^\n" <> ("parse error: expected " <> err e)))))))))))))))
-
--- | Imprecise cut: we slap a list of items on inner errors.
-cut :: Parser Error a -> [Expected] -> Parser Error a
-cut p es = do
-  pos <- getPos
-  cutting p (Imprecise pos es) merge
-
--- | Precise cut: we propagate at most a single error.
-cut' :: Parser Error a -> Expected -> Parser Error a
-cut' p e = do
-  pos <- getPos
-  cutting p (Precise pos e) merge
-
--- | run a Parser, Nothing on failure
-runParserMaybe :: Parser e a -> ByteString -> Maybe a
-runParserMaybe p b = case runParser p b of
-  OK r _ -> Just r
-  Fail -> Nothing
-  Err _ -> Nothing
-
--- | Run parser, Left error on failure.
-runParserEither :: Parser Error a -> ByteString -> Either ByteString a
-runParserEither p bs = case runParser p bs of
-  Err e -> Left $ strToUtf8 $ prettyError bs e
-  OK a _ -> Right a
-  Fail -> Left "uncaught parse error"
-
--- | Run parser, print pretty error on failure.
-testParser :: (Show a) => Parser Error a -> String -> IO ()
-testParser p str = case fromString str of
-  b -> case runParser p b of
-    Err e -> putStrLn $ prettyError b e
-    OK a _ -> print a
-    Fail -> putStrLn "uncaught parse error"
-
--- * parsing
-
-isWs :: Char -> Bool
-isWs x =
-  x == ' '
-    || x == '\n'
-    || x == '\t'
-    || x == '\r'
-
--- | single whitespace
---
--- >>> runParser ws " \nx"
--- OK ' ' "\nx"
-ws :: Parser e Char
-ws = satisfy isWs
-
--- | Consume whitespace.
---
--- >>> runParser ws_ " \nx"
--- OK () "x"
---
--- >>> runParser ws_ "x"
--- OK () "x"
-ws_ :: Parser e ()
-ws_ =
-  $( switch
-       [|
-         case _ of
-           " " -> ws_
-           "\n" -> ws_
-           "\t" -> ws_
-           "\r" -> ws_
-           _ -> pure ()
-         |]
-   )
-
--- | multiple whitespace
---
--- >>> runParser wss " \nx"
--- OK " \n" "x"
---
--- >>> runParser wss "x"
--- Fail
-wss :: Parser e ByteString
-wss = byteStringOf $ some ws
-
--- | some with a separator
---
--- >>> runParser (sep ws (many (satisfy (/= ' ')))) "a b c"
--- OK ["a","b","c"] ""
-sep :: Parser e s -> Parser e a -> Parser e [a]
-sep s p = (:) <$> p <*> many (s *> p)
-
--- | parser bracketed by two other parsers
---
--- >>> runParser (bracketed ($(char '[')) ($(char ']')) (many (satisfy (/= ']')))) "[bracketed]"
--- OK "bracketed" ""
-bracketed :: Parser e b -> Parser e b -> Parser e a -> Parser e a
-bracketed o c p = o *> p <* c
-
--- | parser wrapped by another parser
---
--- >>> runParser (wrapped ($(char '"')) (many (satisfy (/= '"')))) "\"wrapped\""
--- OK "wrapped" ""
-wrapped :: Parser e () -> Parser e a -> Parser e a
-wrapped x p = bracketed x x p
-
--- | A single digit
---
--- runParserMaybe digit "5"
--- Just 5
-digit :: Parser e Int
-digit = (\c -> ord c - ord '0') <$> satisfyAscii isDigit
-
--- | (unsigned) Int parser
---
--- runParserMaybe int "567"
--- Just 567
-int :: Parser e Int
-int = do
-  (place, n) <- chainr (\n (!place, !acc) -> (place * 10, acc + place * n)) digit (pure (1, 0))
-  case place of
-    1 -> empty
-    _ -> pure n
-
-digits :: Parser e (Int, Int)
-digits = chainr (\n (!place, !acc) -> (place * 10, acc + place * n)) digit (pure (1, 0))
-
--- |
--- >>> runParser double "1.234x"
--- OK 1.234 "x"
---
--- >>> runParser double "."
--- Fail
---
--- >>> runParser double "123"
--- OK 123.0 ""
---
--- >>> runParser double ".123"
--- OK 0.123 ""
---
--- >>> runParser double "123."
--- OK 123.0 ""
-double :: Parser e Double
-double = do
-  (placel, nl) <- digits
-  withOption
-    ($(char '.') *> digits)
-    ( \(placer, nr) ->
-        case (placel, placer) of
-          (1, 1) -> empty
-          _ -> pure $ fromIntegral nl + fromIntegral nr / fromIntegral placer
-    )
-    ( case placel of
-        1 -> empty
-        _ -> pure $ fromIntegral nl
-    )
-
-minus :: Parser e ()
-minus = $(char '-')
-
--- |
--- >>> runParser (signed double) "-1.234x"
--- OK (-1.234) "x"
-signed :: (Num b) => Parser e b -> Parser e b
-signed p = do
-  m <- optional minus
-  case m of
-    Nothing -> p
-    Just () -> negate <$> p
diff --git a/src/Chart/Markup.hs b/src/Chart/Markup.hs
--- a/src/Chart/Markup.hs
+++ b/src/Chart/Markup.hs
@@ -2,14 +2,9 @@
 {-# LANGUAGE OverloadedStrings #-}
 {-# LANGUAGE QuasiQuotes #-}
 
--- | An intermediary representation not unlike SVG or XML but only forming a subset of these standards.
+-- | Conversion between Chart and Markup representations.
 module Chart.Markup
-  ( Attributes (..),
-    attribute,
-    Markup (..),
-    Content (..),
-    renderMarkup,
-    encodeMarkup,
+  ( Markup (..),
     ChartOptions (..),
     markupChartOptions,
     markupChartTree,
@@ -41,17 +36,17 @@
 import Data.ByteString.Char8 (pack)
 import Data.Colour
 import Data.FormatN
-import Data.Map.Strict (Map)
-import Data.Map.Strict qualified as Map
 import Data.Maybe
 import Data.Path
 import Data.Path.Parser
 import Data.String.Interpolate
 import Data.Text (Text)
+import Data.Text qualified as Text
 import Data.Text.Encoding (encodeUtf8)
 import Data.Tree (Tree (..))
-import Data.TreeDiff
+import FlatParse.Basic (utf8ToStr)
 import GHC.Generics
+import MarkupParse
 import Optics.Core hiding (element)
 import Prelude
 
@@ -63,6 +58,7 @@
 -- >>> import Optics.Core
 -- >>> let c0 = ChartOptions (defaultMarkupOptions & #cssOptions % #preferColorScheme .~ PreferNormal) mempty mempty
 -- >>> import Chart.Examples
+-- >>> import MarkupParse
 
 -- | Show a Double, or rounded to 4 decimal places if this is shorter.
 --
@@ -81,113 +77,32 @@
 encodePx :: Double -> ByteString
 encodePx = pack . show . (floor :: Double -> Int)
 
--- | A collection of attributes as a ByteString key-value map.
-newtype Attributes = Attributes {attMap :: Map ByteString ByteString} deriving (Eq, Show, Generic)
-
-instance ToExpr Attributes
-
--- Like Last for most attributes but concatenates the "class" attribute.
-instance Semigroup Attributes where
-  (<>) (Attributes m) (Attributes m') =
-    Attributes $
-      Map.unionWithKey
-        ( \k a b ->
-            case k of
-              "class" -> a <> " " <> b
-              _ -> b
-        )
-        m
-        m'
-
-instance Monoid Attributes where
-  mempty = Attributes Map.empty
-
--- | Create a singleton Attributes
-attribute :: (ByteString, ByteString) -> Attributes
-attribute (k, v) = Attributes $ Map.singleton k v
-
--- | A representation of SVG (and XML) markup with no specific knowledge of SVG or XML syntax rules.
---
--- >>> let c0 = ChartOptions (defaultMarkupOptions & #cssOptions % #preferColorScheme .~ PreferNormal) mempty mempty
--- >>> markupChartOptions c0
--- Markup {tag = "svg", atts = Attributes {attMap = fromList [("height","300"),("viewBox","-0.75 -0.5 1.5 1.0"),("width","450"),("xmlns","http://www.w3.org/2000/svg"),("xmlns:xlink","http://www.w3.org/1999/xlink")]}, contents = [MarkupLeaf (Markup {tag = "style", atts = Attributes {attMap = fromList []}, contents = [Content ""]}),MarkupLeaf (Markup {tag = "g", atts = Attributes {attMap = fromList [("class","chart")]}, contents = []}),MarkupLeaf (Markup {tag = "g", atts = Attributes {attMap = fromList [("class","hud")]}, contents = []})]}
-data Markup = Markup
-  { tag :: ByteString,
-    atts :: Attributes,
-    contents :: [Content]
-  }
-  deriving (Eq, Show, Generic)
-
-instance ToExpr Markup
-
--- | The things that can be inside (form the Content of) a Markup element, especially in a DOM context. Comments are unused by the library representation of a chart and are here to help with parsing arbitrary svg in the wild.
---
--- >>> contents (markupChartOptions c0)
--- [MarkupLeaf (Markup {tag = "style", atts = Attributes {attMap = fromList []}, contents = [Content ""]}),MarkupLeaf (Markup {tag = "g", atts = Attributes {attMap = fromList [("class","chart")]}, contents = []}),MarkupLeaf (Markup {tag = "g", atts = Attributes {attMap = fromList [("class","hud")]}, contents = []})]
-data Content = Content ByteString | Comment ByteString | MarkupLeaf Markup deriving (Eq, Show, Generic)
-
-instance ToExpr Content
-
--- | render markup to Text compliant with being an SVG object (and XML element)
---
--- >>> renderMarkup (markupChartOptions c0)
--- "<svg height=\"300\" viewBox=\"-0.75 -0.5 1.5 1.0\" width=\"450\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"><style></style><g class=\"chart\"/><g class=\"hud\"/></svg>"
-renderMarkup :: Markup -> Text
-renderMarkup (Markup n as xs) =
-  bool [i|<#{na}>#{ls}</#{n}>|] [i|<#{na}/>|] (xs == mempty)
-  where
-    na = intercalate " " ([n] <> (uncurry encodeAttribute <$> Map.toList (attMap as)))
-    ls = mconcat (encodeContent <$> xs)
-
--- | render markup to a ByteString compliant with being an SVG object (and XML element)
---
--- >>> encodeMarkup (markupChartOptions c0)
--- "<svg height=\"300\" viewBox=\"-0.75 -0.5 1.5 1.0\" width=\"450\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"><style></style><g class=\"chart\"/><g class=\"hud\"/></svg>"
-encodeMarkup :: Markup -> ByteString
-encodeMarkup (Markup n as xs) =
-  bool [i|<#{na}>#{ls}</#{n}>|] [i|<#{na}/>|] (xs == mempty)
-  where
-    na = intercalate " " ([n] <> (uncurry encodeAttribute <$> Map.toList (attMap as)))
-    ls = mconcat (encodeContent <$> xs)
-
-encodeContent :: Content -> ByteString
-encodeContent (Content c) = c
-encodeContent (Comment c) = encodeComment c
-encodeContent (MarkupLeaf x) = encodeMarkup x
-
-encodeComment :: ByteString -> ByteString
-encodeComment c = "<!--" <> c <> "-->"
-
-encodeAttribute :: ByteString -> ByteString -> ByteString
-encodeAttribute a b = [i|#{a}="#{b}"|]
-
 -- | Convert a ChartTree to markup
 --
 -- >>> lineExample & view #charts & markupChartTree
--- [Markup {tag = "g", atts = Attributes {attMap = fromList [("class","line")]}, contents = [MarkupLeaf (Markup {tag = "g", atts = Attributes {attMap = fromList [("fill","none"),("stroke","rgb(2%, 73%, 80%)"),("stroke-opacity","1.0"),("stroke-width","0.0150")]}, contents = [MarkupLeaf (Markup {tag = "polyline", atts = Attributes {attMap = fromList [("points","0,-1.0 1.0,-1.0 2.0,-5.0")]}, contents = []})]}),MarkupLeaf (Markup {tag = "g", atts = Attributes {attMap = fromList [("fill","none"),("stroke","rgb(2%, 29%, 48%)"),("stroke-opacity","1.0"),("stroke-width","0.0150")]}, contents = [MarkupLeaf (Markup {tag = "polyline", atts = Attributes {attMap = fromList [("points","0,0 2.8,-3.0")]}, contents = []})]}),MarkupLeaf (Markup {tag = "g", atts = Attributes {attMap = fromList [("fill","none"),("stroke","rgb(66%, 7%, 55%)"),("stroke-opacity","1.0"),("stroke-width","0.0150")]}, contents = [MarkupLeaf (Markup {tag = "polyline", atts = Attributes {attMap = fromList [("points","0.5,-4.0 0.5,0")]}, contents = []})]})]}]
-markupChartTree :: ChartTree -> [Markup]
+-- [Node {rootLabel = StartTag "g" [Attr "class" "line"], subForest = [Node {rootLabel = StartTag "g" [Attr "stroke-width" "0.0150",Attr "stroke" "rgb(2%, 73%, 80%)",Attr "stroke-opacity" "1.0",Attr "fill" "none"], subForest = [Node {rootLabel = EmptyElemTag "polyline" [Attr "points" "0,-1.0 1.0,-1.0 2.0,-5.0"], subForest = []}]},Node {rootLabel = StartTag "g" [Attr "stroke-width" "0.0150",Attr "stroke" "rgb(2%, 29%, 48%)",Attr "stroke-opacity" "1.0",Attr "fill" "none"], subForest = [Node {rootLabel = EmptyElemTag "polyline" [Attr "points" "0,0 2.8,-3.0"], subForest = []}]},Node {rootLabel = StartTag "g" [Attr "stroke-width" "0.0150",Attr "stroke" "rgb(66%, 7%, 55%)",Attr "stroke-opacity" "1.0",Attr "fill" "none"], subForest = [Node {rootLabel = EmptyElemTag "polyline" [Attr "points" "0.5,-4.0 0.5,0"], subForest = []}]}]}]
+markupChartTree :: ChartTree -> [Tree Token]
 markupChartTree cs =
   case (xs', label) of
     ([], Nothing) -> mempty
     (xs'', Nothing) -> xs''
-    (xs'', Just l) -> [Markup "g" (Attributes . Map.singleton "class" . encodeUtf8 $ l) (MarkupLeaf <$> xs'')]
+    (xs'', Just l) -> [Node (StartTag "g" [Attr "class" (encodeUtf8 l)]) xs'']
   where
     (ChartTree (Node (label, cs') xs)) = filterChartTree (not . isEmptyChart) cs
-    xs' = mapMaybe markupChart cs' <> (mconcat $ markupChartTree . ChartTree <$> xs)
+    xs' = mconcat $ fmap markupChart cs' <> (markupChartTree . ChartTree <$> xs)
 
-markupText :: TextStyle -> Text -> Point Double -> Markup
-markupText s t p@(Point x y) = Markup "text" as ((MarkupLeaf <$> xs) <> [Content c])
+markupText :: TextStyle -> Text -> Point Double -> Tree Token
+markupText s t p@(Point x y) = Node (StartTag "text" as) (xs <> [pure (Content c)])
   where
     as =
-      Attributes $
-        Map.fromList $
-          [ ("x", encodeNum x),
-            ("y", encodeNum $ -y)
-          ]
-            <> maybeToList ((\x' -> ("transform", toRotateText x' p)) <$> (s ^. #rotation))
+      uncurry Attr
+        <$> [ ("x", encodeNum x),
+              ("y", encodeNum $ -y)
+            ]
+          <> maybeToList ((\x' -> ("transform", toRotateText x' p)) <$> (s ^. #rotation))
     xs = case view #frame s of
       Nothing -> []
-      Just f -> maybeToList $ markupChart (RectChart (f & over #borderSize (* view #size s)) [styleBoxText s t p])
+      Just f -> markupChart (RectChart (f & over #borderSize (* view #size s)) [styleBoxText s t p])
     c = encodeUtf8 t
 
 -- | Markup a text rotation about a point in radians.
@@ -208,50 +123,54 @@
   "scale(" <> encodeNum x <> ")"
 
 -- | Convert a Rect to Markup
-markupRect :: Rect Double -> Markup
+markupRect :: Rect Double -> Token
 markupRect (Rect x z y w) =
-  Markup "rect" as mempty
+  EmptyElemTag "rect" as
   where
     as =
-      Attributes $
-        Map.fromList
-          [ ("width", encodeNum (z - x)),
-            ("height", encodeNum (w - y)),
-            ("x", encodeNum x),
-            ("y", encodeNum (-w))
-          ]
+      uncurry Attr
+        <$> [ ("width", encodeNum (z - x)),
+              ("height", encodeNum (w - y)),
+              ("x", encodeNum x),
+              ("y", encodeNum (-w))
+            ]
 
 -- | Convert a Chart to Markup
 --
 -- >>> lineExample & view #charts & foldOf charts' & head & markupChart
--- Just (Markup {tag = "g", atts = Attributes {attMap = fromList [("fill","none"),("stroke","rgb(2%, 73%, 80%)"),("stroke-opacity","1.0"),("stroke-width","0.0150")]}, contents = [MarkupLeaf (Markup {tag = "polyline", atts = Attributes {attMap = fromList [("points","0,-1.0 1.0,-1.0 2.0,-5.0")]}, contents = []})]})
-markupChart :: Chart -> Maybe Markup
-markupChart (RectChart s xs) = Just $ Markup "g" (attsRect s) (MarkupLeaf . markupRect <$> xs)
-markupChart (TextChart s xs) = Just $ Markup "g" (attsText s) (MarkupLeaf . uncurry (markupText s) <$> xs)
-markupChart (GlyphChart s xs) = Just $ Markup "g" (attsGlyph s) (MarkupLeaf <$> fmap (markupGlyph s) xs)
-markupChart (PathChart s xs) = Just $ Markup "g" (attsPath s) [MarkupLeaf $ markupPath xs]
-markupChart (LineChart s xs) = Just $ Markup "g" (attsLine s) (MarkupLeaf <$> markupLine xs)
-markupChart (BlankChart _) = Nothing
+-- [Node {rootLabel = StartTag "g" [Attr "stroke-width" "0.0150",Attr "stroke" "rgb(2%, 73%, 80%)",Attr "stroke-opacity" "1.0",Attr "fill" "none"], subForest = [Node {rootLabel = EmptyElemTag "polyline" [Attr "points" "0,-1.0 1.0,-1.0 2.0,-5.0"], subForest = []}]}]
+markupChart :: Chart -> [Tree Token]
+markupChart (RectChart s xs) =
+  [Node (StartTag "g" (attsRect s)) (pure . markupRect <$> xs)]
+markupChart (TextChart s xs) =
+  [Node (StartTag "g" (attsText s)) (uncurry (markupText s) <$> xs)]
+markupChart (GlyphChart s xs) =
+  [Node (StartTag "g" (attsGlyph s)) (fmap (markupGlyph s) xs)]
+markupChart (PathChart s xs) =
+  [Node (StartTag "g" (attsPath s)) [pure $ markupPath xs]]
+markupChart (LineChart s xs) =
+  [Node (StartTag "g" (attsLine s)) (pure <$> markupLine xs)]
+markupChart (BlankChart _) = []
 
-markupLine :: [[Point Double]] -> [Markup]
+markupLine :: [[Point Double]] -> [Token]
 markupLine lss =
-  fmap (($ mempty) . Markup "polyline" . attribute . ("points",) . toPointsText) lss
+  EmptyElemTag "polyline" . (: []) . Attr "points" . toPointsText <$> lss
 
 toPointsText :: [Point Double] -> ByteString
 toPointsText xs = intercalate " " $ (\(Point x y) -> encodeNum x <> "," <> encodeNum (-y)) <$> xs
 
 -- | Path markup
-markupPath :: [PathData Double] -> Markup
+markupPath :: [PathData Double] -> Token
 markupPath ps =
-  Markup "path" (foldMap attribute [("d", pathDataToSvg ps)]) mempty
+  EmptyElemTag "path" [Attr "d" (pathDataToSvg ps)]
 
 -- | GlyphStyle to markup Tree
 -- Note rotation on the outside not the inside.
-markupGlyph :: GlyphStyle -> Point Double -> Markup
+markupGlyph :: GlyphStyle -> Point Double -> Tree Token
 markupGlyph s p =
   case view #rotation s of
-    Nothing -> gl
-    Just r -> Markup "g" (foldMap attribute [("transform", toRotateText r p)]) [MarkupLeaf gl]
+    Nothing -> pure gl
+    Just r -> Node (StartTag "g" [Attr "transform" (toRotateText r p)]) [pure gl]
   where
     gl = markupShape_ (s ^. #shape) (s ^. #size) p
 
@@ -262,79 +181,74 @@
 fromDashOffset :: Double -> ByteString
 fromDashOffset x = encodeNum x
 
-attsLine :: LineStyle -> Attributes
+attsLine :: LineStyle -> [Attr]
 attsLine o =
-  mconcat $
-    attribute
-      <$> [ ("stroke-width", encodeNum $ o ^. #size),
-            ("stroke", showRGB $ o ^. #color),
-            ("stroke-opacity", showOpacity $ o ^. #color),
-            ("fill", "none")
-          ]
-        <> catMaybes
-          [(\x -> ("stroke-linecap", fromLineCap x)) <$> (o ^. #linecap)]
-        <> foldMap (\x -> [("stroke-linejoin", fromLineJoin x)]) (o ^. #linejoin)
-        <> foldMap (\x -> [("stroke-dasharray", fromDashArray x)]) (o ^. #dasharray)
-        <> foldMap (\x -> [("stroke-dashoffset", fromDashOffset x)]) (o ^. #dashoffset)
+  uncurry Attr
+    <$> [ ("stroke-width", encodeNum $ o ^. #size),
+          ("stroke", showRGB $ o ^. #color),
+          ("stroke-opacity", showOpacity $ o ^. #color),
+          ("fill", "none")
+        ]
+      <> catMaybes
+        [(\x -> ("stroke-linecap", fromLineCap x)) <$> (o ^. #linecap)]
+      <> foldMap (\x -> [("stroke-linejoin", fromLineJoin x)]) (o ^. #linejoin)
+      <> foldMap (\x -> [("stroke-dasharray", fromDashArray x)]) (o ^. #dasharray)
+      <> foldMap (\x -> [("stroke-dashoffset", fromDashOffset x)]) (o ^. #dashoffset)
 
-attsRect :: RectStyle -> Attributes
+attsRect :: RectStyle -> [Attr]
 attsRect o =
-  foldMap
-    attribute
-    [ ("stroke-width", encodeNum $ o ^. #borderSize),
-      ("stroke", showRGB $ o ^. #borderColor),
-      ("stroke-opacity", showOpacity $ o ^. #borderColor),
-      ("fill", showRGB $ o ^. #color),
-      ("fill-opacity", showOpacity $ o ^. #color)
-    ]
+  uncurry Attr
+    <$> [ ("stroke-width", encodeNum $ o ^. #borderSize),
+          ("stroke", showRGB $ o ^. #borderColor),
+          ("stroke-opacity", showOpacity $ o ^. #borderColor),
+          ("fill", showRGB $ o ^. #color),
+          ("fill-opacity", showOpacity $ o ^. #color)
+        ]
 
--- | TextStyle to Attributes
-attsText :: TextStyle -> Attributes
+-- | TextStyle to [Attr]
+attsText :: TextStyle -> [Attr]
 attsText o =
-  Attributes $
-    Map.fromList
-      [ ("stroke-width", "0.0"),
-        ("stroke", "none"),
-        ("fill", showRGB $ o ^. #color),
-        ("fill-opacity", showOpacity $ o ^. #color),
-        ("font-size", encodeNum $ o ^. #size),
-        ("text-anchor", toTextAnchor $ o ^. #anchor)
-      ]
+  uncurry Attr
+    <$> [ ("stroke-width", "0.0"),
+          ("stroke", "none"),
+          ("fill", showRGB $ o ^. #color),
+          ("fill-opacity", showOpacity $ o ^. #color),
+          ("font-size", encodeNum $ o ^. #size),
+          ("text-anchor", toTextAnchor $ o ^. #anchor)
+        ]
   where
     toTextAnchor :: Anchor -> ByteString
     toTextAnchor AnchorMiddle = "middle"
     toTextAnchor AnchorStart = "start"
     toTextAnchor AnchorEnd = "end"
 
--- | GlyphStyle to Attributes
-attsGlyph :: GlyphStyle -> Attributes
+-- | GlyphStyle to [Attr]
+attsGlyph :: GlyphStyle -> [Attr]
 attsGlyph o =
-  Attributes $
-    Map.fromList $
-      [ ("stroke-width", encodeNum sw),
-        ("stroke", showRGB $ o ^. #borderColor),
-        ("stroke-opacity", showOpacity $ o ^. #borderColor),
-        ("fill", showRGB $ o ^. #color),
-        ("fill-opacity", showOpacity $ o ^. #color)
-      ]
-        <> foldMap ((: []) . (,) "transform" . toTranslateText) (o ^. #translate)
+  uncurry Attr
+    <$> [ ("stroke-width", encodeNum sw),
+          ("stroke", showRGB $ o ^. #borderColor),
+          ("stroke-opacity", showOpacity $ o ^. #borderColor),
+          ("fill", showRGB $ o ^. #color),
+          ("fill-opacity", showOpacity $ o ^. #color)
+        ]
+      <> foldMap ((: []) . (,) "transform" . toTranslateText) (o ^. #translate)
   where
     sw = case o ^. #shape of
       PathGlyph _ NoScaleBorder -> o ^. #borderSize
       PathGlyph _ ScaleBorder -> min 0.2 (o ^. #borderSize / o ^. #size)
       _ -> o ^. #borderSize
 
--- | PathStyle to Attributes
-attsPath :: PathStyle -> Attributes
+-- | PathStyle to [Attr]
+attsPath :: PathStyle -> [Attr]
 attsPath o =
-  Attributes $
-    Map.fromList
-      [ ("stroke-width", encodeNum $ o ^. #borderSize),
-        ("stroke", showRGB $ o ^. #borderColor),
-        ("stroke-opacity", showOpacity $ o ^. #borderColor),
-        ("fill", showRGB $ o ^. #color),
-        ("fill-opacity", showOpacity $ o ^. #color)
-      ]
+  uncurry Attr
+    <$> [ ("stroke-width", encodeNum $ o ^. #borderSize),
+          ("stroke", showRGB $ o ^. #borderColor),
+          ("stroke-opacity", showOpacity $ o ^. #borderColor),
+          ("fill", showRGB $ o ^. #color),
+          ("fill-opacity", showOpacity $ o ^. #color)
+        ]
 
 -- | includes a flip of the y dimension.
 toTranslateText :: Point Double -> ByteString
@@ -342,78 +256,75 @@
   "translate(" <> encodeNum x <> ", " <> encodeNum (-y) <> ")"
 
 -- | GlyphShape to markup Tree
-markupShape_ :: GlyphShape -> Double -> Point Double -> Markup
-markupShape_ CircleGlyph s (Point x y) = Markup "circle" as mempty
+markupShape_ :: GlyphShape -> Double -> Point Double -> Token
+markupShape_ CircleGlyph s (Point x y) = EmptyElemTag "circle" as
   where
     as =
-      Attributes $
-        Map.fromList
-          [ ("cx", encodeNum x),
-            ("cy", encodeNum $ -y),
-            ("r", encodeNum $ 0.5 * s)
-          ]
+      uncurry Attr
+        <$> [ ("cx", encodeNum x),
+              ("cy", encodeNum $ -y),
+              ("r", encodeNum $ 0.5 * s)
+            ]
 markupShape_ SquareGlyph s p =
   markupRect (move p ((s *) <$> one :: Rect Double))
 markupShape_ (RectSharpGlyph x') s p =
   markupRect (move p (scale (Point s (x' * s)) one :: Rect Double))
-markupShape_ (RectRoundedGlyph x' rx ry) s p = Markup "rect" as mempty
+markupShape_ (RectRoundedGlyph x' rx ry) s p = EmptyElemTag "rect" as
   where
     as =
-      Attributes $
-        Map.fromList
-          [ ("width", encodeNum $ z - x),
-            ("height", encodeNum $ w - y),
-            ("x", encodeNum x),
-            ("y", encodeNum $ -w),
-            ("rx", encodeNum rx),
-            ("ry", encodeNum ry)
-          ]
+      uncurry Attr
+        <$> [ ("width", encodeNum $ z - x),
+              ("height", encodeNum $ w - y),
+              ("x", encodeNum x),
+              ("y", encodeNum $ -w),
+              ("rx", encodeNum rx),
+              ("ry", encodeNum ry)
+            ]
     (Rect x z y w) = move p (scale (Point s (x' * s)) one)
 markupShape_ (TriangleGlyph (Point xa ya) (Point xb yb) (Point xc yc)) s p =
-  Markup "polygon" as mempty
+  EmptyElemTag "polygon" as
   where
     as =
-      Attributes $
-        Map.fromList
-          [ ("transform", toTranslateText p),
-            ("points", encodeNum (s * xa) <> "," <> encodeNum (-(s * ya)) <> " " <> encodeNum (s * xb) <> "," <> encodeNum (-(s * yb)) <> " " <> encodeNum (s * xc) <> "," <> encodeNum (-(s * yc)))
-          ]
+      uncurry Attr
+        <$> [ ("transform", toTranslateText p),
+              ("points", encodeNum (s * xa) <> "," <> encodeNum (-(s * ya)) <> " " <> encodeNum (s * xb) <> "," <> encodeNum (-(s * yb)) <> " " <> encodeNum (s * xc) <> "," <> encodeNum (-(s * yc)))
+            ]
 markupShape_ (EllipseGlyph x') s (Point x y) =
-  Markup "ellipse" as mempty
+  EmptyElemTag "ellipse" as
   where
     as =
-      Attributes $
-        Map.fromList
-          [ ("cx", (pack . show) x),
-            ("cy", (pack . show) $ -y),
-            ("rx", (pack . show) $ 0.5 * s),
-            ("ry", (pack . show) $ 0.5 * s * x')
-          ]
+      uncurry Attr
+        <$> [ ("cx", (pack . show) x),
+              ("cy", (pack . show) $ -y),
+              ("rx", (pack . show) $ 0.5 * s),
+              ("ry", (pack . show) $ 0.5 * s * x')
+            ]
 markupShape_ VLineGlyph s (Point x y) =
-  Markup "polyline" (foldMap attribute [("points", encodeNum x <> "," <> encodeNum (-(y - s / 2)) <> "\n" <> encodeNum x <> "," <> encodeNum (-(y + s / 2)))]) mempty
+  EmptyElemTag "polyline" [Attr "points" $ encodeNum x <> "," <> encodeNum (-(y - s / 2)) <> "\n" <> encodeNum x <> "," <> encodeNum (-(y + s / 2))]
 markupShape_ HLineGlyph s (Point x y) =
-  Markup "polyline" (foldMap attribute [("points", encodeNum (x - s / 2) <> "," <> encodeNum (-y) <> "\n" <> encodeNum (x + s / 2) <> "," <> encodeNum (-y))]) mempty
+  EmptyElemTag "polyline" [Attr "points" $ encodeNum (x - s / 2) <> "," <> encodeNum (-y) <> "\n" <> encodeNum (x + s / 2) <> "," <> encodeNum (-y)]
 markupShape_ (PathGlyph path _) s p =
-  Markup "path" (foldMap attribute [("d", path), ("transform", toTranslateText p <> " " <> toScaleText s)]) mempty
+  EmptyElemTag "path" (uncurry Attr <$> [("d", path), ("transform", toTranslateText p <> " " <> toScaleText s)])
 
 -- | Create the classic SVG element
 --
--- >>> header 100 one [Markup "foo" mempty mempty]
--- Markup {tag = "svg", atts = Attributes {attMap = fromList [("height","100"),("viewBox","-0.5 -0.5 1.0 1.0"),("width","100"),("xmlns","http://www.w3.org/2000/svg"),("xmlns:xlink","http://www.w3.org/1999/xlink")]}, contents = [MarkupLeaf (Markup {tag = "foo", atts = Attributes {attMap = fromList []}, contents = []})]}
-header :: Double -> Rect Double -> [Markup] -> Markup
+-- >>> header 100 one [pure (StartTag "foo" [])]
+-- Node {rootLabel = StartTag "svg" [Attr "xmlns" "http://www.w3.org/2000/svg",Attr "xmlns:xlink" "http://www.w3.org/1999/xlink",Attr "width" "100",Attr "height" "100",Attr "viewBox" "-0.5 -0.5 1.0 1.0"], subForest = [Node {rootLabel = StartTag "foo" [], subForest = []}]}
+header :: Double -> Rect Double -> [Tree Token] -> Tree Token
 header markupheight viewbox content' =
-  Markup
-    "svg"
-    ( foldMap
-        attribute
-        [ ("xmlns", "http://www.w3.org/2000/svg"),
-          ("xmlns:xlink", "http://www.w3.org/1999/xlink"),
-          ("width", encodePx w''),
-          ("height", encodePx h'),
-          ("viewBox", encodeNum x <> " " <> encodeNum (-w) <> " " <> encodeNum (z - x) <> " " <> encodeNum (w - y))
-        ]
+  Node
+    ( StartTag
+        "svg"
+        ( uncurry Attr
+            <$> [ ("xmlns", "http://www.w3.org/2000/svg"),
+                  ("xmlns:xlink", "http://www.w3.org/1999/xlink"),
+                  ("width", encodePx w''),
+                  ("height", encodePx h'),
+                  ("viewBox", encodeNum x <> " " <> encodeNum (-w) <> " " <> encodeNum (z - x) <> " " <> encodeNum (w - y))
+                ]
+        )
     )
-    (MarkupLeaf <$> content')
+    content'
   where
     (Rect x z y w) = viewbox
     Point w' h = width viewbox
@@ -529,16 +440,16 @@
 -- | Convert CssOptions to Markup
 --
 -- >>> markupCssOptions defaultCssOptions
--- Markup {tag = "style", atts = Attributes {attMap = fromList []}, contents = [Content "svg {\n  color-scheme: light dark;\n}\n{\n  .canvas g, .title g, .axisbar g, .ticktext g, .tickglyph g, .ticklines g, .legendContent g text {\n    fill: rgb(5%, 5%, 5%);\n  }\n  .ticklines g, .tickglyph g, .legendBorder g {\n    stroke: rgb(5%, 5%, 5%);\n  }\n  .legendBorder g {\n    fill: rgb(94%, 94%, 94%);\n  }\n}\n@media (prefers-color-scheme:dark) {\n  .canvas g, .title g, .axisbar g, .ticktext g, .tickglyph g, .ticklines g, .legendContent g text {\n    fill: rgb(94%, 94%, 94%);\n  }\n  .ticklines g, .tickglyph g, .legendBorder g {\n    stroke: rgb(94%, 94%, 94%);\n  }\n  .legendBorder g {\n    fill: rgb(5%, 5%, 5%);\n  }\n}"]}
-markupCssOptions :: CssOptions -> Markup
+-- Node {rootLabel = StartTag "style" [], subForest = [Node {rootLabel = Content "svg {\n  color-scheme: light dark;\n}\n{\n  .canvas g, .title g, .axisbar g, .ticktext g, .tickglyph g, .ticklines g, .legendContent g text {\n    fill: rgb(5%, 5%, 5%);\n  }\n  .ticklines g, .tickglyph g, .legendBorder g {\n    stroke: rgb(5%, 5%, 5%);\n  }\n  .legendBorder g {\n    fill: rgb(94%, 94%, 94%);\n  }\n}\n@media (prefers-color-scheme:dark) {\n  .canvas g, .title g, .axisbar g, .ticktext g, .tickglyph g, .ticklines g, .legendContent g text {\n    fill: rgb(94%, 94%, 94%);\n  }\n  .ticklines g, .tickglyph g, .legendBorder g {\n    stroke: rgb(94%, 94%, 94%);\n  }\n  .legendBorder g {\n    fill: rgb(5%, 5%, 5%);\n  }\n}", subForest = []}]}
+markupCssOptions :: CssOptions -> Tree Token
 markupCssOptions css =
-  Markup
-    "style"
-    mempty
-    [ Content $
-        cssPreferColorScheme (light, dark) (view #preferColorScheme css)
-          <> markupShapeRendering (view #shapeRendering css)
-          <> view #cssExtra css
+  Node
+    (StartTag "style" [])
+    [ pure $
+        Content $
+          cssPreferColorScheme (light, dark) (view #preferColorScheme css)
+            <> markupShapeRendering (view #shapeRendering css)
+            <> view #cssExtra css
     ]
 
 -- | CSS shape rendering text snippet
@@ -558,15 +469,16 @@
 -- | Convert ChartOptions to Markup
 --
 -- >>> markupChartOptions (ChartOptions (defaultMarkupOptions & #cssOptions % #preferColorScheme .~ PreferNormal) mempty mempty)
--- Markup {tag = "svg", atts = Attributes {attMap = fromList [("height","300"),("viewBox","-0.75 -0.5 1.5 1.0"),("width","450"),("xmlns","http://www.w3.org/2000/svg"),("xmlns:xlink","http://www.w3.org/1999/xlink")]}, contents = [MarkupLeaf (Markup {tag = "style", atts = Attributes {attMap = fromList []}, contents = [Content ""]}),MarkupLeaf (Markup {tag = "g", atts = Attributes {attMap = fromList [("class","chart")]}, contents = []}),MarkupLeaf (Markup {tag = "g", atts = Attributes {attMap = fromList [("class","hud")]}, contents = []})]}
+-- Markup {standard = Xml, markupTree = [Node {rootLabel = StartTag "svg" [Attr "xmlns" "http://www.w3.org/2000/svg",Attr "xmlns:xlink" "http://www.w3.org/1999/xlink",Attr "width" "450",Attr "height" "300",Attr "viewBox" "-0.75 -0.5 1.5 1.0"], subForest = [Node {rootLabel = StartTag "style" [], subForest = [Node {rootLabel = Content "", subForest = []}]},Node {rootLabel = StartTag "g" [Attr "class" "chart"], subForest = []},Node {rootLabel = StartTag "g" [Attr "class" "hud"], subForest = []}]}]}
 markupChartOptions :: ChartOptions -> Markup
 markupChartOptions co =
-  header
-    (view (#markupOptions % #markupHeight) co)
-    viewbox
-    ( [markupCssOptions (view (#markupOptions % #cssOptions) co)]
-        <> markupChartTree csAndHud
-    )
+  Markup Xml . (: []) $
+    header
+      (view (#markupOptions % #markupHeight) co)
+      viewbox
+      ( [markupCssOptions (view (#markupOptions % #cssOptions) co)]
+          <> markupChartTree csAndHud
+      )
   where
     viewbox = singletonGuard (view styleBox' csAndHud)
     csAndHud = addHud (view #hudOptions co) (view #charts co)
@@ -574,16 +486,16 @@
 -- | Render ChartOptions to an SVG ByteString
 --
 -- >>> encodeChartOptions (ChartOptions (defaultMarkupOptions & #cssOptions % #preferColorScheme .~ PreferNormal) mempty mempty)
--- "<svg height=\"300\" viewBox=\"-0.75 -0.5 1.5 1.0\" width=\"450\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"><style></style><g class=\"chart\"/><g class=\"hud\"/></svg>"
+-- "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"450\" height=\"300\" viewBox=\"-0.75 -0.5 1.5 1.0\"><style></style><g class=\"chart\"></g><g class=\"hud\"></g></svg>"
 encodeChartOptions :: ChartOptions -> ByteString
-encodeChartOptions = encodeMarkup . markupChartOptions
+encodeChartOptions = markdown Compact . markupChartOptions
 
 -- | Render ChartOptions to an SVG Text snippet
 --
 -- >>> renderChartOptions (ChartOptions (defaultMarkupOptions & #cssOptions % #preferColorScheme .~ PreferNormal) mempty mempty)
--- "<svg height=\"300\" viewBox=\"-0.75 -0.5 1.5 1.0\" width=\"450\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\"><style></style><g class=\"chart\"/><g class=\"hud\"/></svg>"
+-- "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"450\" height=\"300\" viewBox=\"-0.75 -0.5 1.5 1.0\"><style></style><g class=\"chart\"></g><g class=\"hud\"></g></svg>"
 renderChartOptions :: ChartOptions -> Text
-renderChartOptions = renderMarkup . markupChartOptions
+renderChartOptions = Text.pack . utf8ToStr . markdown Compact . markupChartOptions
 
 instance Semigroup ChartOptions where
   (<>) (ChartOptions _ h c) (ChartOptions s' h' c') =
diff --git a/src/Chart/Markup/Parser.hs b/src/Chart/Markup/Parser.hs
deleted file mode 100644
--- a/src/Chart/Markup/Parser.hs
+++ /dev/null
@@ -1,409 +0,0 @@
-{-# LANGUAGE OverloadedLabels #-}
-{-# LANGUAGE OverloadedStrings #-}
-{-# LANGUAGE QuasiQuotes #-}
-{-# LANGUAGE TemplateHaskell #-}
-
--- | Much of the parsing logic is based on the XML productions found in https://www.w3.org/TR/xml/#NT-content
---
--- As an Xml parser, this is very incomplete and rudimentary, hence not calling it an xml parser.
---
--- My other reference was https://www.w3schools.com/xml/xml_syntax.asp (don't laugh).
-module Chart.Markup.Parser
-  ( markupP,
-    contentP,
-    XmlDocument (..),
-    xmlDocument,
-    xmlProlog,
-    xmlXMLDecl,
-    xmlDoctypedecl,
-    XmlMiscType,
-    XmlMisc (..),
-    xmlMisc,
-    xmlComment,
-    lt,
-    gt,
-    gtc,
-    oct,
-    sq,
-    dq,
-    wrappedQ,
-    wrappedQNoGuard,
-    eq,
-    xmlName,
-    xmlAtt,
-    openTag,
-    closeTag,
-    emptyElemTag,
-
-    -- * testing
-    exampleDocument,
-  )
-where
-
-import Chart.FlatParse
-import Chart.Markup
-  ( Content (..),
-    Markup (Markup),
-    attribute,
-  )
-import Data.ByteString (ByteString)
-import Data.String.Interpolate
-import FlatParse.Basic hiding (cut)
-import FlatParse.Basic.Text qualified as T
-import GHC.Generics
-import Prelude
-
--- $setup
---
--- >>> :set -XOverloadedLabels
--- >>> :set -XOverloadedStrings
--- >>> import Chart
--- >>> import Optics.Core
--- >>> import FlatParse.Basic
--- >>> import Chart.FlatParse
-
--- * special XML chars
-
--- | opening tag
---
--- >>> runParserMaybe lt "<"
--- Just ()
-lt :: Parser e ()
-lt = $(char '<') -- `cut'` Lit "<"
-
--- | closing tag char
---
--- >>> runParserMaybe gt ">"
--- Just ()
-gt :: Parser e ()
-gt = $(char '>')
-
--- | self-closing tag
---
--- >>> runParserMaybe gtc "/>"
--- Just ()
-gtc :: Parser e ()
-gtc = $(string "/>")
-
--- | open closer tag
---
--- >>> runParserMaybe oct "</"
--- Just ()
-oct :: Parser e ()
-oct = $(string "</")
-
--- | single quote
---
--- >>> runParserMaybe sq "''"
--- Just ()
-sq :: ParserT st e ()
-sq = $(char '\'')
-
--- | double quote
---
--- >>> runParserMaybe dq "\""
--- Just ()
-dq :: ParserT st e ()
-dq = $(char '"')
-
-wrappedDq :: Parser e ByteString
-wrappedDq = wrapped dq (byteStringOf $ many (T.satisfy (/= '"')))
-
--- | guard check for closing quote
-wrappedSq :: Parser e ByteString
-wrappedSq = wrapped sq (byteStringOf $ many (T.satisfy (/= '\'')))
-
--- | quote or double quote wrapped
---
--- >>> runParserMaybe wrappedQ "\"quoted\""
--- Just "quoted"
---
--- >>> runParserMaybe wrappedQ "'quoted'"
--- Just "quoted"
-wrappedQ :: Parser e ByteString
-wrappedQ =
-  wrappedDq
-    <|> wrappedSq
-
--- | quote or double quote wrapped
---
--- >>> runParserMaybe (wrappedQNoGuard xmlName) "\"name\""
--- Just "name"
---
--- but will consume quotes if the underlying parser does.
---
--- >>> runParserMaybe (wrappedQNoGuard (many anyChar)) "\"name\""
--- Nothing
-wrappedQNoGuard :: Parser e a -> Parser e a
-wrappedQNoGuard p = wrapped dq p <|> wrapped sq p
-
--- | xml production [25]
---
--- >>> runParserMaybe eq " = "
--- Just ()
---
--- >>> runParserMaybe eq "="
--- Just ()
-eq :: Parser e ()
-eq = optional wss *> $(char '=') <* optional wss
-
--- [4]
-nameStartChar :: Parser e Char
-nameStartChar = fusedSatisfy isLatinLetter isNameStartChar isNameStartChar isNameStartChar
-
-isNameStartChar :: Char -> Bool
-isNameStartChar x =
-  (x >= 'a' && x <= 'z')
-    || (x >= 'A' && x <= 'Z')
-    || (x == ':')
-    || (x == '_')
-    || (x >= '\xC0' && x <= '\xD6')
-    || (x >= '\xD8' && x <= '\xF6')
-    || (x >= '\xF8' && x <= '\x2FF')
-    || (x >= '\x370' && x <= '\x37D')
-    || (x >= '\x37F' && x <= '\x1FFF')
-    || (x >= '\x200C' && x <= '\x200D')
-    || (x >= '\x2070' && x <= '\x218F')
-    || (x >= '\x2C00' && x <= '\x2FEF')
-    || (x >= '\x3001' && x <= '\xD7FF')
-    || (x >= '\xF900' && x <= '\xFDCF')
-    || (x >= '\xFDF0' && x <= '\xFFFD')
-    || (x >= '\x10000' && x <= '\xEFFFF')
-
--- [4a]
-nameChar :: Parser e Char
-nameChar = fusedSatisfy isNameCharAscii isNameCharExt isNameCharExt isNameCharExt
-
-isNameCharAscii :: Char -> Bool
-isNameCharAscii x =
-  (x >= 'a' && x <= 'z')
-    || (x >= 'A' && x <= 'Z')
-    || (x >= '0' && x <= '9')
-    || (x == ':')
-    || (x == '_')
-    || (x == '-')
-    || (x == '.')
-
-isNameCharExt :: Char -> Bool
-isNameCharExt x =
-  (x >= 'a' && x <= 'z')
-    || (x >= 'A' && x <= 'Z')
-    || (x >= '0' && x <= '9')
-    || (x == ':')
-    || (x == '_')
-    || (x == '-')
-    || (x == '.')
-    || (x == '\xB7')
-    || (x >= '\xC0' && x <= '\xD6')
-    || (x >= '\xD8' && x <= '\xF6')
-    || (x >= '\xF8' && x <= '\x2FF')
-    || (x >= '\x300' && x <= '\x36F')
-    || (x >= '\x370' && x <= '\x37D')
-    || (x >= '\x37F' && x <= '\x1FFF')
-    || (x >= '\x200C' && x <= '\x200D')
-    || (x >= '\x203F' && x <= '\x2040')
-    || (x >= '\x2070' && x <= '\x218F')
-    || (x >= '\x2C00' && x <= '\x2FEF')
-    || (x >= '\x3001' && x <= '\xD7FF')
-    || (x >= '\xF900' && x <= '\xFDCF')
-    || (x >= '\xFDF0' && x <= '\xFFFD')
-    || (x >= '\x10000' && x <= '\xEFFFF')
-
--- | name string according to xml production rule [5]
---
--- >>> runParserMaybe xmlName "name"
--- Just "name"
-xmlName :: Parser e ByteString
-xmlName = byteStringOf (nameStartChar >> many nameChar)
-
--- | attribute pair
---
--- >>> runParserMaybe xmlAtt "style = 'fancy'"
--- Just ("style","fancy")
-xmlAtt :: Parser e (ByteString, ByteString)
-xmlAtt = (,) <$> (xmlName <* eq) <*> wrappedQ
-
--- | open xml tag as per xml production rule [40]
---
--- >>> runParserMaybe openTag "<g style='fancy'>"
--- Just ("g",[("style","fancy")])
-openTag :: Parser Error (ByteString, [(ByteString, ByteString)])
-openTag =
-  lt *> ((,) <$> xmlName <*> many (wss *> xmlAtt) <* optional wss) <* gt `cut'` Msg "open tag expected"
-
--- | closing tag as per [42]
---
--- >>> runParserMaybe closeTag "</g>"
--- Just "g"
-closeTag :: Parser Error ByteString
-closeTag = oct *> xmlName <* optional wss <* gt `cut'` Msg "close tag expected"
-
--- | empty element tag as per [44]
---
--- >>> runParserMaybe emptyElemTag "<br/>"
--- Just ("br",[])
-emptyElemTag :: Parser Error (ByteString, [(ByteString, ByteString)])
-emptyElemTag =
-  lt *> ((,) <$> xmlName <*> many (wss *> xmlAtt) <* optional wss) <* gtc
-
--- * comments
-
-xmlCommentOpen :: Parser e ()
-xmlCommentOpen = $(string "<!--")
-
-xmlCommentClose :: Parser e ()
-xmlCommentClose = $(string "-->")
-
-xmlCharNotMinus :: Parser e ByteString
-xmlCharNotMinus = byteStringOf $ satisfy (/= '-')
-
-xmlMinusPlusChar :: Parser e ByteString
-xmlMinusPlusChar = byteStringOf $ $(char '-') *> xmlCharNotMinus
-
--- | xml comment
---
---
--- >>> runParserMaybe xmlComment "<!-- comment -->"
--- Just " comment "
-xmlComment :: Parser e ByteString
-xmlComment = xmlCommentOpen *> byteStringOf (many (xmlCharNotMinus <|> xmlMinusPlusChar)) <* xmlCommentClose
-
--- * prolog
-
--- | xml production rule [22]
---
--- The library doesn't do any analysis of the prolog string nor produces it, hence it is just parsed as a ByteString
---
--- >>> runParser (ws_ *> xmlProlog) exampleDocument
--- OK "<?xml version=\"1.0\" standalone=\"yes\" ?>\n\n<!--open the DOCTYPE declaration -\n  the open square bracket indicates an internal DTD-->\n<!DOCTYPE foo [\n\n<!--define the internal DTD-->\n  <!ELEMENT foo (#PCDATA)>\n\n<!--close the DOCTYPE declaration-->\n]>\n" "<foo>Hello World.</foo>\n"
-xmlProlog :: Parser e ByteString
-xmlProlog =
-  byteStringOf $
-    xmlXMLDecl
-      >> many xmlMisc
-      >> optional (xmlDoctypedecl >> optional xmlMisc)
-
--- | XML declaration as per production rule [23]
---
--- >>> runParserMaybe xmlXMLDecl "<?xml version=\"1.0\" standalone=\"yes\" ?>"
--- Just "<?xml version=\"1.0\" standalone=\"yes\" ?>"
-xmlXMLDecl :: Parser e ByteString
-xmlXMLDecl =
-  byteStringOf $
-    $(string "<?xml")
-      >> xmlVersionInfo
-      >> optional xmlEncodingDecl
-      >> optional wssDDecl
-      >> optional wss
-      >> $(string "?>")
-
--- xml production [24]
-xmlVersionInfo :: Parser e ByteString
-xmlVersionInfo = byteStringOf $ wss >> $(string "version") >> eq >> wrappedQNoGuard xmlVersionNum
-
--- | xml production [26]
-xmlVersionNum :: Parser e ByteString
-xmlVersionNum =
-  byteStringOf ($(string "1.") >> some (satisfy isDigit))
-
--- | Whether an 'XmlMisc' is comment or whitespace
-data XmlMiscType = XMiscComment | XMiscS deriving (Generic, Show, Eq)
-
--- | A comment or whitespace outside of the main document [27]
---
---   not as per [27] (missing PI)
-data XmlMisc = XmlMisc {xmiscType :: XmlMiscType, xmiscContent :: ByteString} deriving (Generic, Show, Eq)
-
--- | Parser for miscellaneous guff
-xmlMisc :: Parser e XmlMisc
-xmlMisc =
-  (XmlMisc XMiscComment <$> xmlComment)
-    <|> (XmlMisc XMiscS <$> wss)
-
--- | Typical xml header text
-exampleDocument :: ByteString
-exampleDocument =
-  [i|
-<?xml version="1.0" standalone="yes" ?>
-
-<!--open the DOCTYPE declaration -
-  the open square bracket indicates an internal DTD-->
-<!DOCTYPE foo [
-
-<!--define the internal DTD-->
-  <!ELEMENT foo (\#PCDATA)>
-
-<!--close the DOCTYPE declaration-->
-]>
-<foo>Hello World.</foo>
-|]
-
--- | Doctype declaration as per production rule [28]
---
--- >>> runParserMaybe xmlDoctypedecl "<!DOCTYPE foo [ declarations ]>"
--- Just "<!DOCTYPE foo [ declarations ]>"
-xmlDoctypedecl :: Parser e ByteString
-xmlDoctypedecl =
-  byteStringOf $
-    $(string "<!DOCTYPE")
-      >> wss
-      >> xmlName
-      >>
-      -- optional (wss >> xmlExternalID) >>
-      optional wss
-      >> optional bracketedSB
-      >> optional wss
-      >> $(char '>')
-
-bracketedSB :: Parser e [Char]
-bracketedSB = bracketed $(char '[') $(char ']') (many (satisfy (/= ']')))
-
--- [32]
-wssDDecl :: Parser e ByteString
-wssDDecl =
-  byteStringOf $
-    wss *> $(string "standalone") *> eq *> xmlYesNo
-
-xmlYesNo :: Parser e ByteString
-xmlYesNo = wrappedQNoGuard (byteStringOf $ $(string "yes") <|> $(string "no"))
-
--- | xml production [80]
-xmlEncodingDecl :: Parser e ByteString
-xmlEncodingDecl = wss *> $(string "encoding") *> eq *> wrappedQNoGuard xmlEncName
-
--- [81]
-xmlEncName :: Parser e ByteString
-xmlEncName = byteStringOf (satisfyAscii isLatinLetter >> many (satisfyAscii (\x -> isLatinLetter x || isDigit x || elem x ("._-" :: [Char]))))
-
--- main Parser
-
--- | An XML document as pre production rule [1]
-data XmlDocument = XmlDocument ByteString Markup [XmlMisc] deriving (Show, Eq)
-
--- | Note that the library builds a Markup as per the SVG standards and not a Document.
---
--- >>> runParser (ws_ *> xmlDocument) exampleDocument
--- OK (XmlDocument "<?xml version=\"1.0\" standalone=\"yes\" ?>\n\n<!--open the DOCTYPE declaration -\n  the open square bracket indicates an internal DTD-->\n<!DOCTYPE foo [\n\n<!--define the internal DTD-->\n  <!ELEMENT foo (#PCDATA)>\n\n<!--close the DOCTYPE declaration-->\n]>\n" (Markup {tag = "foo", atts = Attributes {attMap = fromList []}, contents = [Content "Hello World."]}) [XmlMisc {xmiscType = XMiscS, xmiscContent = "\n"}]) ""
-xmlDocument :: Parser Error XmlDocument
-xmlDocument = XmlDocument <$> (ws_ *> xmlProlog) <*> markupP <*> many xmlMisc
-
--- | Main parser for a single Markup (xml-like) element
---
--- >>> runParser markupP "<foo>Hello World.</foo>"
--- OK (Markup {tag = "foo", atts = Attributes {attMap = fromList []}, contents = [Content "Hello World."]}) ""
-markupP :: Parser Error Markup
-markupP =
-  ((\(n, as) -> Markup n (mconcat $ attribute <$> as) mempty) <$> emptyElemTag)
-    <|>
-    -- no close tag = open tag test
-    ((\(n, as) c _ -> Markup n (mconcat $ attribute <$> as) c) <$> openTag <*> many contentP <*> closeTag `cut` ["open tag", "content", "close tag"])
-
--- | Inner contents of an element.
---
--- >>> runParser (some contentP) "<foo>Hello World.</foo>content<!-- comment -->"
--- OK [MarkupLeaf (Markup {tag = "foo", atts = Attributes {attMap = fromList []}, contents = [Content "Hello World."]}),Content "content",Comment " comment "] ""
-contentP :: Parser Error Content
-contentP =
-  (MarkupLeaf <$> markupP)
-    <|> (Comment <$> xmlComment)
-    <|> (Content <$> byteStringOf (some (satisfy (/= '<'))))
diff --git a/src/Data/Path/Parser.hs b/src/Data/Path/Parser.hs
--- a/src/Data/Path/Parser.hs
+++ b/src/Data/Path/Parser.hs
@@ -20,7 +20,6 @@
 where
 
 import Chart.Data
-import Chart.FlatParse
 import Control.Applicative hiding (many, optional, some, (<|>))
 import Control.Monad.State.Lazy
 import Data.ByteString (ByteString, intercalate)
@@ -30,6 +29,7 @@
 import FlatParse.Basic
 import GHC.Generics
 import GHC.OverloadedLabels
+import MarkupParse.FlatParse
 import NumHask.Prelude hiding (optional, (<|>))
 import Optics.Core hiding ((<|))
 
diff --git a/test/test.hs b/test/test.hs
--- a/test/test.hs
+++ b/test/test.hs
@@ -1,19 +1,14 @@
 {-# LANGUAGE OverloadedStrings #-}
-{-# LANGUAGE TupleSections #-}
 {-# OPTIONS_GHC -Wno-unused-top-binds #-}
 
 module Main (main) where
 
 import Chart.Examples
 import Chart.Markup
-import Chart.Markup.Parser
 import Data.ByteString qualified as BS
-import Data.Foldable
-import Data.Maybe
 import Data.TreeDiff
-import Data.TreeDiff.OMap qualified as O
-import FlatParse.Basic
-import GHC.Exts
+import MarkupParse
+import MarkupParse.Patch
 import Test.Tasty (TestTree, defaultMain, testGroup)
 import Test.Tasty.Golden.Advanced (goldenTest)
 import Prelude
@@ -34,142 +29,11 @@
   goldenTest
     fp
     (getMarkupFile fp)
-    (pure (markupChartOptions co))
+    (pure (normalize $ markupChartOptions co))
     (\expected actual -> pure (show . ansiWlEditExpr <$> patch expected actual))
     (\_ -> pure ())
 
 getMarkupFile :: FilePath -> IO Markup
 getMarkupFile fp = do
   bs <- BS.readFile fp
-  case runParser markupP bs of
-    OK m _ -> pure m
-    Err e -> print e >> fail "parse error"
-    Fail -> print ("uncaught parse error" :: BS.ByteString) >> fail "parse error"
-
-isUnchangedList :: [Edit EditExpr] -> Bool
-isUnchangedList xs = all isCpy xs && all isUnchangedExpr (mapMaybe cpy xs)
-
-isCpy :: Edit a -> Bool
-isCpy (Cpy _) = True
-isCpy _ = False
-
-cpy :: Edit a -> Maybe a
-cpy (Cpy a) = Just a
-cpy _ = Nothing
-
-isUnchangedEdit :: Edit EditExpr -> Bool
-isUnchangedEdit (Cpy e) = isUnchangedExpr e
-isUnchangedEdit _ = False
-
-isUnchangedExpr :: EditExpr -> Bool
-isUnchangedExpr e = isUnchangedList $ getList e
-
-getList :: EditExpr -> [Edit EditExpr]
-getList (EditApp _ xs) = xs
-getList (EditRec _ m) = snd <$> O.toList m
-getList (EditLst xs) = xs
-getList (EditExp _) = []
-
-filterChangedExprs :: EditExpr -> Maybe EditExpr
-filterChangedExprs (EditApp n xs) =
-  case filter (not . isUnchangedEdit) (filterChangedEdits xs) of
-    [] -> Nothing
-    xs' -> Just $ EditApp n xs'
-filterChangedExprs (EditRec n m) =
-  case filterChangedEditMap (O.fromList $ filter (not . isUnchangedEdit . snd) (O.toList m)) of
-    Nothing -> Nothing
-    Just m' -> Just (EditRec n m')
-filterChangedExprs (EditLst xs) =
-  case filter (not . isUnchangedEdit) (filterChangedEdits xs) of
-    [] -> Nothing
-    xs' -> Just (EditLst xs')
-filterChangedExprs (EditExp _) = Nothing
-
-filterChangedEdit :: Edit EditExpr -> Maybe (Edit EditExpr)
-filterChangedEdit (Cpy a) = Cpy <$> filterChangedExprs a
-filterChangedEdit x = Just x
-
-filterChangedEdit' :: (f, Edit EditExpr) -> Maybe (f, Edit EditExpr)
-filterChangedEdit' (f, e) = (f,) <$> filterChangedEdit e
-
-filterChangedEdits :: [Edit EditExpr] -> [Edit EditExpr]
-filterChangedEdits xs = mapMaybe filterChangedEdit xs
-
-filterChangedEditMap :: O.OMap FieldName (Edit EditExpr) -> Maybe (O.OMap FieldName (Edit EditExpr))
-filterChangedEditMap m = case xs' of
-  [] -> Nothing
-  xs'' -> Just $ O.fromList xs''
-  where
-    xs = O.toList m
-    xs' = mapMaybe filterChangedEdit' xs
-
-patch :: Markup -> Markup -> Maybe (Edit EditExpr)
-patch m m' = filterChangedEdit $ ediff m m'
-
--- patch testing
-printPatchExamples :: IO ()
-printPatchExamples = traverse_ (printPatchExample m0) patchExamples
-
-printPatchExample :: Markup -> (String, Markup) -> IO ()
-printPatchExample m (s, m') = do
-  print s
-  case show . ansiWlEditExpr <$> patch m m' of
-    Nothing -> putStrLn ("no changes" :: String)
-    Just x -> putStrLn x
-
-patchExamples :: [(String, Markup)]
-patchExamples =
-  [ ("class change", m1),
-    ("delete an attribute", m2),
-    ("insert an attribute", m3),
-    ("change a tag", m4),
-    ("change a markup leaf", m5),
-    ("delete a leaf", m6),
-    ("insert a leaf", m7),
-    ("insert attribute", m8),
-    ("modify content", m9),
-    ("deep leaf insertion", m10)
-  ]
-
-m0 :: Markup
-m0 = Markup "top" (Attributes (fromList [("class", "a"), ("b", "c")])) [MarkupLeaf (Markup "leaf" mempty mempty), Content "text"]
-
--- Changing class
-m1 :: Markup
-m1 = Markup "top" (Attributes (fromList [("class", "b"), ("b", "c")])) [MarkupLeaf (Markup "leaf" mempty mempty), Content "text"]
-
--- deleting an attribute
-m2 :: Markup
-m2 = Markup "top" (Attributes (fromList [("class", "a")])) [MarkupLeaf (Markup "leaf" mempty mempty), Content "text"]
-
--- inserting an attribute
-m3 :: Markup
-m3 = Markup "top" (Attributes (fromList [("class", "a"), ("b", "c"), ("d", "e")])) [MarkupLeaf (Markup "leaf" mempty mempty), Content "text"]
-
--- changing a tag
-m4 :: Markup
-m4 = Markup "newtop" (Attributes (fromList [("class", "a"), ("b", "c")])) [MarkupLeaf (Markup "leaf" mempty mempty), Content "text"]
-
--- changing a leaf
-m5 :: Markup
-m5 = Markup "top" (Attributes (fromList [("class", "a"), ("b", "c")])) [MarkupLeaf (Markup "newleaf" mempty mempty), Content "text"]
-
--- deleting a leaf
-m6 :: Markup
-m6 = Markup "top" (Attributes (fromList [("class", "a"), ("b", "c")])) [Content "text"]
-
--- inserting a leaf
-m7 :: Markup
-m7 = Markup "top" (Attributes (fromList [("class", "a"), ("b", "c")])) [MarkupLeaf (Markup "newleaf" mempty mempty), MarkupLeaf (Markup "leaf" mempty mempty), Content "text"]
-
--- inserting Attributes
-m8 :: Markup
-m8 = Markup "top" (Attributes (fromList [("class", "a"), ("b", "c")])) [MarkupLeaf (Markup "leaf" (Attributes (fromList [("class", "a"), ("b", "c")])) mempty), Content "text"]
-
--- modifying content
-m9 :: Markup
-m9 = Markup "top" (Attributes (fromList [("class", "a"), ("b", "c")])) [MarkupLeaf (Markup "leaf" mempty mempty), Content "textual content"]
-
--- inserting a leaf deeper down
-m10 :: Markup
-m10 = Markup "top" (Attributes (fromList [("class", "a"), ("b", "c")])) [MarkupLeaf (Markup "leaf" mempty [MarkupLeaf (Markup "newdeepleaf" mempty [Content "deeper content"])]), Content "textual content"]
+  pure $ normalize $ markup_ Xml bs
